結果
| 問題 |
No.3069 Invisible Speedrun
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-07-16 09:06:35 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 136 ms / 2,000 ms |
| コード長 | 176 bytes |
| コンパイル時間 | 522 ms |
| コンパイル使用メモリ | 11,904 KB |
| 実行使用メモリ | 27,640 KB |
| 平均クエリ数 | 585.15 |
| 最終ジャッジ日時 | 2025-07-16 09:06:47 |
| 合計ジャッジ時間 | 12,180 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 80 |
ソースコード
n = int(input())
for i in range(n * 2):
if i % 2 == 0:
print("D", flush=True)
else:
print("R", flush=True)
if int(input()) != 0:
break