結果
| 問題 |
No.870 無敵囲い
|
| コンテスト | |
| ユーザー |
URechaRecha
|
| 提出日時 | 2019-09-02 17:30:56 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 30 ms / 300 ms |
| コード長 | 298 bytes |
| コンパイル時間 | 88 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2024-06-29 06:22:08 |
| 合計ジャッジ時間 | 1,435 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 18 |
ソースコード
N = int(input())
piece_pos =[(2,8),(3,9),(7,9)]
muteki_gakoi = [(5,8),(4,8),(6,8)]
for _ in range(N):
x0,y0,x1,y1=map(int,input().split())
if (x0,y0) in piece_pos:
i = piece_pos.index((x0,y0))
piece_pos[i] = (x1,y1)
if piece_pos == muteki_gakoi:print("YES")
else:print("NO")
URechaRecha