結果
問題 | No.32 貯金箱の憂鬱 |
ユーザー | nckkht |
提出日時 | 2017-01-14 15:12:33 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 32 ms / 5,000 ms |
コード長 | 923 bytes |
コンパイル時間 | 88 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-07-23 02:28:28 |
合計ジャッジ時間 | 1,020 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
10,752 KB |
testcase_01 | AC | 30 ms
10,880 KB |
testcase_02 | AC | 30 ms
10,752 KB |
testcase_03 | AC | 30 ms
10,880 KB |
testcase_04 | AC | 30 ms
10,880 KB |
testcase_05 | AC | 29 ms
10,880 KB |
testcase_06 | AC | 31 ms
10,880 KB |
testcase_07 | AC | 30 ms
10,752 KB |
testcase_08 | AC | 29 ms
11,008 KB |
testcase_09 | AC | 31 ms
10,880 KB |
testcase_10 | AC | 30 ms
10,752 KB |
testcase_11 | AC | 29 ms
10,752 KB |
ソースコード
K = 0 #1000円札の枚数 L = int(input()) #100円硬貨の枚数 M = int(input()) #25円硬貨の枚数 N = int(input()) #1円硬貨の枚数 #x 両替対象の硬貨 #y 両替後対象の硬貨/紙幣 #z1 両替前の硬貨の金額 #z2 両替後の硬貨/紙幣の金額 def Exchange(x,y,z1,z2): if (x * z1) % z2 == 0: return 0, int(y + x // (z2 / z1)) else: return int(x % (z2 / z1)), int(y + x // (z2 / z1)) if N < 25: if M >= 4: M, L = Exchange(M, L, 25, 100) if L >=10: L, K = Exchange(L, K, 100, 1000) else: if L >=10: L, K = Exchange(L, K, 100, 1000) elif 25 <= N <= 1000: N, M = Exchange(N, M, 1, 25) if M >= 4: M, L = Exchange(M, L, 25, 100) if 10 <= L: L, K = Exchange(L, K, 100, 1000) else: if 10 <= L: L, K = Exchange(L, K, 100, 1000) else: pass print(L + M + N)