結果
問題 | No.3069 Torn Documents |
ユーザー | maspy |
提出日時 | 2020-04-01 23:09:46 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 890 bytes |
コンパイル時間 | 525 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 13,184 KB |
最終ジャッジ日時 | 2024-07-21 21:39:58 |
合計ジャッジ時間 | 3,395 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 68 ms
13,184 KB |
testcase_01 | WA | - |
testcase_02 | AC | 28 ms
10,624 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 27 ms
10,752 KB |
testcase_08 | WA | - |
testcase_09 | AC | 26 ms
10,496 KB |
testcase_10 | AC | 27 ms
10,752 KB |
testcase_11 | WA | - |
testcase_12 | AC | 28 ms
10,624 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 27 ms
10,496 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 28 ms
10,624 KB |
testcase_21 | AC | 28 ms
10,752 KB |
testcase_22 | WA | - |
testcase_23 | AC | 28 ms
10,624 KB |
testcase_24 | AC | 26 ms
10,624 KB |
testcase_25 | AC | 28 ms
10,752 KB |
testcase_26 | AC | 26 ms
10,752 KB |
testcase_27 | AC | 29 ms
10,624 KB |
ソースコード
#!/usr/bin/ python3.8 import sys read = sys.stdin.buffer.read readline = sys.stdin.buffer.readline readlines = sys.stdin.buffer.readlines A, B = map(int, readline().split()) S = readline().rstrip().decode() wall = set() path = set() path.add((A, B)) H = A W = B for s in S: if s == 'R': if (A, B + 1) not in path: wall.add((A, B + 1)) else: B += 1 elif s == 'L': if (A, B - 1) in wall or B == 0: continue B -= 1 path.add((A, B)) elif s == 'U': if (A - 1, B) in wall or A == 0: continue A -= 1 path.add((A, B)) elif s == 'D': if (A + 1, B) not in path: wall.add((A + 1, B)) if (0, 0) not in path: print(-1) exit() wall = [(x, y) for x, y in wall if 0 <= x <= H and 0 <= y <= W] print(len(wall)) for x, y in wall: print(x, y)