結果
| 問題 | No.32 貯金箱の憂鬱 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2014-11-19 21:52:22 |
| 言語 | Java (openjdk 25.0.2) |
| 結果 |
AC
|
| 実行時間 | 57 ms / 5,000 ms |
| + 180µs | |
| コード長 | 309 bytes |
| 記録 | |
| コンパイル時間 | 2,442 ms |
| コンパイル使用メモリ | 84,068 KB |
| 実行使用メモリ | 43,264 KB |
| 最終ジャッジ日時 | 2026-08-23 16:24:00 |
| 合計ジャッジ時間 | 4,241 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 12 |
ソースコード
import java.util.Scanner;
public class Yukicoder32 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int L = sc.nextInt();
int M = sc.nextInt();
int N = sc.nextInt();
M += N / 25;
L += M / 4;
System.out.println(L % 10 + M % 4 + N % 25);
}
}