結果
問題 | No.131 マンハッタン距離 |
ユーザー | roiti46 |
提出日時 | 2015-01-21 02:15:33 |
言語 | Python2 (2.7.18) |
結果 |
WA
|
実行時間 | - |
コード長 | 112 bytes |
コンパイル時間 | 303 ms |
コンパイル使用メモリ | 7,040 KB |
実行使用メモリ | 6,400 KB |
最終ジャッジ日時 | 2024-06-22 23:30:32 |
合計ジャッジ時間 | 1,451 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 10 ms
6,272 KB |
testcase_01 | AC | 10 ms
6,144 KB |
testcase_02 | AC | 9 ms
6,144 KB |
testcase_03 | AC | 10 ms
6,272 KB |
testcase_04 | AC | 10 ms
6,144 KB |
testcase_05 | AC | 10 ms
6,272 KB |
testcase_06 | AC | 10 ms
6,272 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 10 ms
6,272 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 10 ms
6,272 KB |
ソースコード
x,y,d = map(int,raw_input().split()) print max(0,min(x,d)-max(0,d-y))+max(0,min(y,d)-max(0,d-x)) if d > 0 else 1