結果

問題 No.126 2基のエレベータ
ユーザー tnoda_tnoda_
提出日時 2015-08-12 00:26:01
言語 PyPy2
(7.3.15)
結果
WA  
実行時間 -
コード長 210 bytes
コンパイル時間 745 ms
コンパイル使用メモリ 76,700 KB
実行使用メモリ 75,836 KB
最終ジャッジ日時 2024-07-18 06:47:16
合計ジャッジ時間 3,982 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
75,776 KB
testcase_01 AC 76 ms
75,396 KB
testcase_02 WA -
testcase_03 AC 75 ms
75,424 KB
testcase_04 AC 76 ms
75,276 KB
testcase_05 AC 76 ms
75,648 KB
testcase_06 AC 77 ms
75,836 KB
testcase_07 AC 77 ms
75,520 KB
testcase_08 AC 76 ms
75,648 KB
testcase_09 AC 76 ms
75,696 KB
testcase_10 AC 77 ms
75,776 KB
testcase_11 AC 75 ms
75,392 KB
testcase_12 AC 76 ms
75,776 KB
testcase_13 AC 75 ms
75,392 KB
testcase_14 AC 76 ms
75,304 KB
testcase_15 AC 76 ms
75,288 KB
testcase_16 AC 76 ms
75,520 KB
testcase_17 AC 77 ms
75,704 KB
testcase_18 AC 76 ms
75,264 KB
testcase_19 AC 75 ms
75,412 KB
testcase_20 AC 75 ms
75,648 KB
testcase_21 AC 74 ms
75,648 KB
testcase_22 AC 79 ms
75,296 KB
testcase_23 AC 77 ms
75,520 KB
testcase_24 AC 74 ms
75,400 KB
testcase_25 AC 74 ms
75,520 KB
testcase_26 AC 74 ms
75,264 KB
testcase_27 AC 76 ms
75,532 KB
testcase_28 AC 77 ms
75,452 KB
testcase_29 AC 76 ms
75,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B, S = map(int, raw_input().strip().split())
ans = 0
if A == 0:
    ans = A = 1
if abs(S - A) <= abs(S - B):
    ans += abs(S - A) + S
else:
    ans += abs(S - B) + min(S - 1 + A, abs(S - A) + A)
print(ans)
0