結果
問題 | No.185 和風 |
ユーザー | pluto77 |
提出日時 | 2016-02-07 13:09:46 |
言語 | Python2 (2.7.18) |
結果 |
WA
|
実行時間 | - |
コード長 | 389 bytes |
コンパイル時間 | 222 ms |
コンパイル使用メモリ | 6,912 KB |
実行使用メモリ | 6,400 KB |
最終ジャッジ日時 | 2024-09-21 21:29:24 |
合計ジャッジ時間 | 811 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
ソースコード
#coding: utf-8 ##yuki_185 import sys s=[] n=int(raw_input()) for i in xrange(n): s.append(raw_input()) l=[] for i in range(0,len(s)): ltt=map(int,s[i].split()) lt=ltt[:2] l.append(lt) print l res=l[0][1]-l[0][0] if res<0: print -1 sys.exit() for i in xrange(1,len(l)): if len(l[i])==1: break if l[i][1]-l[i][0]<0 or l[i][1]-l[i][0] != res: print -1 sys.exit() print res