結果

問題 No.2551 2, 3, 5, 7 Game
ユーザー ntudantuda
提出日時 2023-12-06 20:42:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 560 ms / 2,357 ms
コード長 261 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-09-27 01:47:41
合計ジャッジ時間 5,070 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,736 KB
testcase_01 AC 46 ms
52,352 KB
testcase_02 AC 44 ms
52,352 KB
testcase_03 AC 44 ms
52,608 KB
testcase_04 AC 44 ms
52,480 KB
testcase_05 AC 560 ms
76,160 KB
testcase_06 AC 558 ms
76,288 KB
testcase_07 AC 556 ms
76,416 KB
testcase_08 AC 559 ms
76,544 KB
testcase_09 AC 541 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *

tmp = 1
X = [1]
while tmp <= 10 ** 16:
    tmp *= 2
    X.append(tmp)
    tmp *= 7
    X.append(tmp)
for _ in range(int(input())):
    N = int(input())
    if (bisect_left(X, N) & 1):
        print("ryota")
    else:
        print("sepa")
0