結果
問題 | No.185 和風 |
ユーザー |
|
提出日時 | 2018-09-04 12:34:21 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 30 ms / 1,000 ms |
コード長 | 170 bytes |
コンパイル時間 | 108 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-10-13 06:28:56 |
合計ジャッジ時間 | 784 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 7 |
ソースコード
n = int(input()) res = [] for _ in range(n): x,y = map(int,input().split()) res.append(y-x) if n*[res[0]]==res and res[0]>0: print(res[0]) else: print(-1)