結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,224 KB
testcase_01 AC 44 ms
52,352 KB
testcase_02 AC 48 ms
52,864 KB
testcase_03 AC 45 ms
52,480 KB
testcase_04 AC 46 ms
52,608 KB
testcase_05 AC 563 ms
76,544 KB
testcase_06 AC 547 ms
76,288 KB
testcase_07 AC 539 ms
76,160 KB
testcase_08 AC 554 ms
76,672 KB
testcase_09 AC 538 ms
76,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *

tmp = 1
X = []
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("sepa")
    else:
        print("ryota")
0