結果

問題 No.188 HAPPY DAY
ユーザー spaciaspacia
提出日時 2015-12-16 20:02:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 54 ms / 1,000 ms
コード長 618 bytes
コンパイル時間 2,116 ms
コンパイル使用メモリ 73,920 KB
実行使用メモリ 37,128 KB
最終ジャッジ日時 2024-06-09 20:18:42
合計ジャッジ時間 2,559 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
37,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.math.*;

class Main188 {
	
	public static void out (Object o) {
		System.out.println(o);
	}
	
	public static int getSum (int n) {
		int ret = 0;
		while (n != 0) {
			ret += n % 10;
			n /= 10;
		}
		return ret;
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		int[] max = {0,31,28,31,30,31,30,31,31,30,31,30,31};
		int ans = 0;
		for (int m = 1; m < max.length; m++) {
			for (int d = 1; d <= max[m]; d++) {
				if (m == getSum(d)) ans++;
			}
		}
		out(ans);
	}
}
0