結果

問題 No.2551 2, 3, 5, 7 Game
ユーザー rlangevinrlangevin
提出日時 2024-04-08 08:55:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 152 ms / 2,357 ms
コード長 395 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-10-01 04:59:45
合計ジャッジ時間 2,685 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,392 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 37 ms
52,480 KB
testcase_04 AC 37 ms
52,480 KB
testcase_05 AC 152 ms
76,672 KB
testcase_06 AC 141 ms
76,672 KB
testcase_07 AC 148 ms
76,288 KB
testcase_08 AC 142 ms
76,800 KB
testcase_09 AC 126 ms
76,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def ceil(x, n):
    return (x + n - 1)//n

def solve(N):
    while True:
        N2 = ceil(N, 2)
        N14 = ceil(N, 14)
        if N14 > 1:
            N = N14
        elif N2 == 1:
            print("ryota")
            return 
        else:
            print("sepa")
            return
    

T = int(input())
for _ in range(T):
    solve(int(input()))
0