結果
問題 | No.32 貯金箱の憂鬱 |
ユーザー | yagi2 |
提出日時 | 2017-04-14 01:07:21 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 126 ms / 5,000 ms |
コード長 | 514 bytes |
コンパイル時間 | 2,337 ms |
コンパイル使用メモリ | 75,220 KB |
実行使用メモリ | 54,448 KB |
最終ジャッジ日時 | 2024-07-23 04:22:16 |
合計ジャッジ時間 | 4,554 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 12 |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int L = Integer.parseInt(sc.next()); int M = Integer.parseInt(sc.next()); int N = Integer.parseInt(sc.next()); int ans = 0; // 1->25 M += (int)N / 25; ans += N % 25; // 25->100 L += (int)M / 4; ans += M % 4; // 100->1000 ans += L % 10; System.out.println(ans); } }