結果

問題 No.176 2種類の切手
ユーザー roiti46roiti46
提出日時 2015-04-03 01:49:50
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 86 ms / 1,000 ms
コード長 234 bytes
コンパイル時間 1,053 ms
コンパイル使用メモリ 76,680 KB
実行使用メモリ 77,824 KB
最終ジャッジ日時 2024-10-08 02:55:31
合計ジャッジ時間 4,562 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
76,420 KB
testcase_01 AC 78 ms
76,416 KB
testcase_02 AC 83 ms
76,416 KB
testcase_03 AC 76 ms
76,672 KB
testcase_04 AC 78 ms
76,348 KB
testcase_05 AC 78 ms
76,336 KB
testcase_06 AC 77 ms
76,160 KB
testcase_07 AC 76 ms
76,800 KB
testcase_08 AC 76 ms
76,556 KB
testcase_09 AC 76 ms
76,160 KB
testcase_10 AC 76 ms
76,692 KB
testcase_11 AC 82 ms
76,160 KB
testcase_12 AC 77 ms
76,672 KB
testcase_13 AC 74 ms
76,672 KB
testcase_14 AC 76 ms
76,836 KB
testcase_15 AC 76 ms
76,432 KB
testcase_16 AC 77 ms
76,288 KB
testcase_17 AC 76 ms
76,316 KB
testcase_18 AC 77 ms
76,800 KB
testcase_19 AC 78 ms
76,288 KB
testcase_20 AC 77 ms
76,320 KB
testcase_21 AC 80 ms
76,800 KB
testcase_22 AC 83 ms
76,940 KB
testcase_23 AC 78 ms
76,464 KB
testcase_24 AC 77 ms
76,316 KB
testcase_25 AC 76 ms
76,672 KB
testcase_26 AC 84 ms
76,672 KB
testcase_27 AC 75 ms
76,692 KB
testcase_28 AC 77 ms
76,564 KB
testcase_29 AC 86 ms
77,824 KB
testcase_30 AC 85 ms
76,288 KB
testcase_31 AC 81 ms
76,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B, T = map(int,raw_input().split())
over = min((A-T%A)%A, (B-T%B)%B)
for i in xrange(1,1000000):
    if T >= i*A:
        over = min(over, (B-(T%A+i*A)%B)%B)
    if T >= i*B:
        over = min(over, (A-(T%B+i*B)%A)%A)
print T+over
0