結果
問題 | No.32 貯金箱の憂鬱 |
ユーザー | excnct |
提出日時 | 2024-12-09 05:35:48 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 765 bytes |
コンパイル時間 | 203 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-12-09 05:35:50 |
合計ジャッジ時間 | 1,523 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 27 ms
10,752 KB |
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 | - |
ソースコード
def main(): l = int(input().rstrip()) m = int(input().rstrip()) n = int(input().rstrip()) sum = int(100 * l + 25 * m + n) thousands = 0 hundreds = 0 quarters = 0 dimes = 0 if sum >= 1000: thousands = int(sum / 1000) sum = sum - 1000 * thousands print(f"1000円台の処理後は{sum}円です") if sum >= 100: hundreds = int(sum / 100) sum = sum - 100 * hundreds print(f"100円台の処理後は{sum}円です") if sum >= 25: quarters = int(sum / 25) sum = sum - 25 * quarters print(f"25円台の処理後は{sum}円です") sum_coins = int(hundreds + quarters + dimes + sum) print(sum_coins) if __name__ == "__main__": main()