結果
問題 | No.281 門松と魔法(1) |
ユーザー | airis |
提出日時 | 2015-09-18 23:10:25 |
言語 | Python2 (2.7.18) |
結果 |
WA
|
実行時間 | - |
コード長 | 709 bytes |
コンパイル時間 | 223 ms |
コンパイル使用メモリ | 7,040 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-06 19:10:49 |
合計ジャッジ時間 | 2,187 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 12 ms
6,816 KB |
testcase_17 | WA | - |
testcase_18 | AC | 12 ms
6,816 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 12 ms
6,816 KB |
testcase_31 | RE | - |
testcase_32 | AC | 12 ms
6,820 KB |
testcase_33 | AC | 12 ms
6,816 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | AC | 11 ms
6,816 KB |
testcase_40 | WA | - |
testcase_41 | AC | 11 ms
6,816 KB |
testcase_42 | AC | 11 ms
6,820 KB |
testcase_43 | RE | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | RE | - |
testcase_47 | WA | - |
testcase_48 | RE | - |
testcase_49 | RE | - |
testcase_50 | RE | - |
testcase_51 | WA | - |
testcase_52 | RE | - |
testcase_53 | RE | - |
testcase_54 | RE | - |
testcase_55 | WA | - |
testcase_56 | WA | - |
ソースコード
d = input() h = [] for i in xrange(3): h.append(input()) def mod_min(H): if H[1] != H[0] and H[1] != H[2] and min(H) == H[1]: print 0 return True diff = abs(H[1] - min(H[0], H[2])) H[1] -= (diff / d + 1) * d if H[1] != H[0] and H[1] != H[2] and min(H) == H[1]: #print "min" print H[1] return True return False def mod_max(H): if H[1] != H[0] and H[1] != H[2] and max(H) == H[1]: print 0 return True diff = abs(H[1] - max(H[0] ,H[2])) H[1] += (diff / d + 1) * d if H[1] != H[0] and H[1] != H[2] and max(H) == H[1]: #print "max" print H[1] return True return False def bad(): print -1 return True mod_min(h[:]) or mod_max(h[:]) or bad()