結果

問題 No.32 貯金箱の憂鬱
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-11 04:56:46
言語 Java
(openjdk 23)
結果
AC  
実行時間 139 ms / 5,000 ms
コード長 465 bytes
コンパイル時間 2,254 ms
コンパイル使用メモリ 73,740 KB
実行使用メモリ 41,476 KB
最終ジャッジ日時 2024-07-23 02:26:53
合計ジャッジ時間 4,374 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int L = sc.nextInt();
        int M = sc.nextInt();
        int N = sc.nextInt();
        int total = L*100 + M*25 + N;
        int coinsum = total%1000;
        int c100 = coinsum/100 ;
        int c25 = (coinsum%100)/25 ;
        int c1 = coinsum%25 ;
        int r = c100 + c25 + c1 ;
        System.out.println(r);
    }
}
0