ps | |
---|---|
링크 | acmicpc.net/… |
출처 | BOJ |
문제 번호 | 16187 |
문제명 | Game on Plane |
레벨 | 플래티넘 1 |
분류 |
스프라그-그런디 |
시간복잡도 | O(T) |
인풋사이즈 | T<=5000 |
사용한 언어 | Python |
제출기록 | 30840KB / 76ms |
최고기록 | 72ms |
해결날짜 | 2022/06/07 |
"""Solution code for "BOJ 16187. Game on Plane".
- Problem link: https://www.acmicpc.net/problem/16187
- Solution link: http://www.teferi.net/ps/problems/boj/16187
Tags: [Sprague-Grundy]
"""
import sys
def is_win_pos_of_dawson_kayles(n):
return not (n in (15, 35) or n % 34 in (5, 9, 21, 25, 29))
def main():
T = int(sys.stdin.readline())
for _ in range(T):
N = int(sys.stdin.readline())
print('First' if is_win_pos_of_dawson_kayles(N) else 'Second')
if __name__ == '__main__':
main()