結果

問題 No.5019 Hakai Project
ユーザー hirayuu_ychirayuu_yc
提出日時 2023-10-02 18:34:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 162 ms / 3,000 ms
コード長 686 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 90,428 KB
スコア 50
最終ジャッジ日時 2023-11-17 09:30:50
合計ジャッジ時間 25,715 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
89,712 KB
testcase_01 AC 145 ms
89,712 KB
testcase_02 AC 145 ms
89,840 KB
testcase_03 AC 147 ms
89,840 KB
testcase_04 AC 144 ms
89,712 KB
testcase_05 AC 147 ms
89,712 KB
testcase_06 AC 146 ms
89,840 KB
testcase_07 AC 161 ms
90,428 KB
testcase_08 AC 146 ms
89,712 KB
testcase_09 AC 145 ms
89,840 KB
testcase_10 AC 149 ms
89,840 KB
testcase_11 AC 146 ms
89,712 KB
testcase_12 AC 162 ms
90,428 KB
testcase_13 AC 146 ms
89,712 KB
testcase_14 AC 145 ms
89,712 KB
testcase_15 AC 144 ms
89,840 KB
testcase_16 AC 147 ms
89,712 KB
testcase_17 AC 147 ms
89,840 KB
testcase_18 AC 145 ms
89,840 KB
testcase_19 AC 146 ms
89,840 KB
testcase_20 AC 149 ms
89,840 KB
testcase_21 AC 145 ms
89,840 KB
testcase_22 AC 146 ms
89,840 KB
testcase_23 AC 147 ms
89,840 KB
testcase_24 AC 149 ms
89,712 KB
testcase_25 AC 148 ms
89,712 KB
testcase_26 AC 149 ms
89,840 KB
testcase_27 AC 149 ms
89,840 KB
testcase_28 AC 146 ms
89,840 KB
testcase_29 AC 150 ms
89,712 KB
testcase_30 AC 144 ms
89,712 KB
testcase_31 AC 145 ms
89,840 KB
testcase_32 AC 144 ms
89,712 KB
testcase_33 AC 142 ms
89,840 KB
testcase_34 AC 144 ms
89,840 KB
testcase_35 AC 142 ms
89,840 KB
testcase_36 AC 143 ms
89,712 KB
testcase_37 AC 143 ms
89,712 KB
testcase_38 AC 141 ms
89,328 KB
testcase_39 AC 145 ms
89,968 KB
testcase_40 AC 143 ms
89,840 KB
testcase_41 AC 143 ms
89,712 KB
testcase_42 AC 142 ms
89,712 KB
testcase_43 AC 145 ms
89,840 KB
testcase_44 AC 143 ms
89,712 KB
testcase_45 AC 145 ms
89,712 KB
testcase_46 AC 146 ms
89,968 KB
testcase_47 AC 145 ms
89,712 KB
testcase_48 AC 147 ms
89,712 KB
testcase_49 AC 146 ms
89,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
A=[]
for i in range(N):
    A.append(input())
bomb=[]
mini=0
minip=0
for i in range(M):
    C,L=map(int,input().split())
    bomb.append([C,[]])
    if mini<L:
    	mini=L
    	minip=i+1
    for j in range(L):
        bomb[-1][-1].append(tuple(map(int,input().split())))
x=-1
y=-1
for i in range(N):
    for j in range(N):
        if A[i][j]=="@":
            x=i
            y=j
            break
    if x!=-1:
        break
ans=[]
for i in range(x):
    ans.append([1,"D"])
for i in range(y):
    ans.append([1,"R"])
for i in range(45000):
    ans.append([2,minip])
for i in range(45000):
	ans.append([3,minip])
print(len(ans))
for i in ans:
    print(*i)
0