結果
| 問題 |
No.2551 2, 3, 5, 7 Game
|
| コンテスト | |
| ユーザー |
ntuda
|
| 提出日時 | 2023-12-05 20:38:01 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 180 bytes |
| コンパイル時間 | 252 ms |
| コンパイル使用メモリ | 82,304 KB |
| 実行使用メモリ | 76,672 KB |
| 最終ジャッジ日時 | 2024-09-27 00:23:31 |
| 合計ジャッジ時間 | 4,204 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 10 |
ソースコード
for _ in range(int(input())):
N = int(input())
x = 0
while N > 7:
N //= 2
x ^= 1
if x == 1:
print("sepa")
else:
print("ryota")
ntuda