結果
問題 | No.2551 2, 3, 5, 7 Game |
ユーザー | hato336 |
提出日時 | 2023-11-25 13:50:17 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 852 bytes |
コンパイル時間 | 356 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 89,888 KB |
最終ジャッジ日時 | 2024-09-26 10:33:40 |
合計ジャッジ時間 | 2,714 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 151 ms
89,888 KB |
testcase_01 | AC | 140 ms
89,656 KB |
testcase_02 | AC | 144 ms
89,328 KB |
testcase_03 | AC | 143 ms
89,852 KB |
testcase_04 | AC | 145 ms
89,600 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random #sys.setrecursionlimit(10**9) #sys.set_int_max_str_digits(0) t = int(input()) #alist = list(map(int,input().split())) #alist = [] #s = input() #n,m = map(int,input().split()) #for i in range(n): # alist.append(list(map(int,input().split()))) input = sys.stdin.readline @functools.lru_cache(maxsize=1000000) def calc(x,n,turn): if x >= n: return turn else: a = [] for i in [2,3,5,7]: a.append(calc(x*i,n,turn^1)) if turn in a: return turn else: return turn^1 for i in range(100): n = int(input()) c = 0 for j in range(20): if 14**j < n <= 2*14**j: print('ryota') c = 1 break if c == 0: print('sepa')