結果
問題 |
No.185 和風
|
ユーザー |
|
提出日時 | 2018-05-04 20:12:58 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 198 bytes |
コンパイル時間 | 89 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-06-28 01:13:51 |
合計ジャッジ時間 | 816 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 6 WA * 1 |
ソースコード
n = int(input()) z = 0 for i in range(n): x, y = map(int, input().split()) if i == 0: z = y - x if z != y - x or y - x < 0: print(-1) break else: print(z)