結果

問題 No.2551 2, 3, 5, 7 Game
ユーザー sepa38sepa38
提出日時 2023-11-23 21:31:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 445 ms / 2,357 ms
コード長 190 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 76,336 KB
最終ジャッジ日時 2024-09-26 08:20:48
合計ジャッジ時間 4,070 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
58,776 KB
testcase_01 AC 38 ms
59,032 KB
testcase_02 AC 48 ms
64,756 KB
testcase_03 AC 40 ms
59,768 KB
testcase_04 AC 40 ms
58,580 KB
testcase_05 AC 432 ms
76,280 KB
testcase_06 AC 431 ms
76,276 KB
testcase_07 AC 445 ms
75,876 KB
testcase_08 AC 425 ms
75,940 KB
testcase_09 AC 423 ms
76,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
  n = int(input())
  flg = 0
  while n > 1:
    if flg:
      n = (n + 6) // 7
    else:
      n = (n + 1) // 2
    flg ^= 1
  print("ryota" if flg else "sepa")
0