結果

問題 No.3069 Invisible Speedrun
ユーザー ルク
提出日時 2025-03-21 22:00:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 209 ms / 2,000 ms
コード長 125 bytes
コンパイル時間 698 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 94,072 KB
平均クエリ数 585.15
最終ジャッジ日時 2025-03-21 22:00:30
合計ジャッジ時間 13,183 ms
ジャッジサーバーID
(参考情報)
judge3 / judge7
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 80
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
for i in range(2*n):
    print("R" if i % 2 == 0 else "D", flush=True)
    if input() == "1":
        break
0