結果
問題 | No.870 無敵囲い |
ユーザー | miya145592 |
提出日時 | 2023-05-02 00:12:59 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 339 bytes |
コンパイル時間 | 190 ms |
コンパイル使用メモリ | 82,624 KB |
実行使用メモリ | 66,512 KB |
最終ジャッジ日時 | 2024-11-20 19:44:34 |
合計ジャッジ時間 | 2,015 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
52,596 KB |
testcase_01 | AC | 43 ms
53,008 KB |
testcase_02 | AC | 44 ms
52,352 KB |
testcase_03 | AC | 39 ms
52,284 KB |
testcase_04 | AC | 39 ms
53,248 KB |
testcase_05 | AC | 39 ms
53,012 KB |
testcase_06 | AC | 39 ms
52,824 KB |
testcase_07 | AC | 39 ms
52,972 KB |
testcase_08 | AC | 38 ms
52,460 KB |
testcase_09 | AC | 40 ms
53,284 KB |
testcase_10 | AC | 39 ms
52,340 KB |
testcase_11 | AC | 40 ms
52,772 KB |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | AC | 40 ms
52,592 KB |
testcase_16 | AC | 39 ms
53,284 KB |
testcase_17 | AC | 39 ms
53,092 KB |
testcase_18 | AC | 40 ms
53,216 KB |
testcase_19 | AC | 40 ms
53,076 KB |
testcase_20 | RE | - |
ソースコード
N = int(input()) xyxy = [list(map(int, input().split())) for _ in range(N)] d = dict() d[(2, 8)] = 'A' d[(3, 9)] = 'B' d[(7, 9)] = 'C' for x1, y1, x2, y2 in xyxy: if (x1, y1) in d: d[(x2, y2)] = d[(x1, y1)] d[(x1, y1)] = '' if d[(5, 8)]=='A' and d[(4, 8)]=='B' and d[(6, 8)]=='C': print("YES") else: print("NO")