結果
| 問題 | No.3069 Invisible Speedrun |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-03-22 01:01:17 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 133 ms / 2,000 ms |
| コード長 | 268 bytes |
| 記録 | |
| コンパイル時間 | 226 ms |
| コンパイル使用メモリ | 95,968 KB |
| 実行使用メモリ | 84,640 KB |
| 平均クエリ数 | 585.15 |
| 最終ジャッジ日時 | 2026-07-07 19:16:15 |
| 合計ジャッジ時間 | 9,362 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 80 |
ソースコード
def readlist():
return list(map(int, input().split()))
def readint():
return map(int, input().split())
n = int(input())
op = "DR"
turn = 0
while True:
print(op[turn % 2], flush=True)
turn += 1
res = int(input())
if res != 0:
exit()