結果
| 問題 | No.185 和風 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-02-25 16:17:01 |
| 言語 | PyPy2 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 295 bytes |
| 記録 | |
| コンパイル時間 | 145 ms |
| コンパイル使用メモリ | 76,504 KB |
| 最終ジャッジ日時 | 2025-12-03 19:30:28 |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 6 WA * 1 |
ソースコード
#coding: utf-8 ##yuki_185 import sys n=int(raw_input()) for i in xrange(n): s=map(int,raw_input().split()) x=s[0] y=s[1] if i==0: if y-x>=0: temp=y-x else: print -1 sys.exit() else: if y-x>=0 and temp==y-x: continue else: print -1 sys.exit() res=temp print res