結果
| 問題 | No.3069 Invisible Speedrun |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-07-16 09:06:35 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 210 ms / 2,000 ms |
| + 2µs | |
| コード長 | 176 bytes |
| 記録 | |
| コンパイル時間 | 551 ms |
| コンパイル使用メモリ | 21,664 KB |
| 実行使用メモリ | 15,872 KB |
| 平均クエリ数 | 585.15 |
| 最終ジャッジ日時 | 2026-07-13 06:56:05 |
| 合計ジャッジ時間 | 11,765 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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