結果

問題 No.3069 Invisible Speedrun
ユーザー miho-4
提出日時 2025-03-21 23:43:12
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 224 bytes
コンパイル時間 462 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 95,092 KB
平均クエリ数 587.51
最終ジャッジ日時 2025-03-21 23:43:28
合計ジャッジ時間 14,652 ms
ジャッジサーバーID
(参考情報)
judge6 / judge7
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 25 RE * 55
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
for i in range(2*n):
	if i%2==0:
		print("D",flush=1)
	else:
		print("R",flush=1)
	s=int(input())
	if s==1:
		exit()
	if i==n+2 and s==0:
		print("U",flush=1)
		int(input())
		print("R",flush=1)
		int(input())
0