結果

問題 No.188 HAPPY DAY
ユーザー koukonkokoukonko
提出日時 2015-12-14 15:28:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 52 ms / 1,000 ms
コード長 384 bytes
コンパイル時間 2,068 ms
コンパイル使用メモリ 72,840 KB
実行使用メモリ 36,724 KB
最終ジャッジ日時 2024-06-09 20:18:39
合計ジャッジ時間 2,589 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

package yukicoder;

public class Main {
	public static void main(String[] args) {
		try {
			int ans = 0;
			for (int i = 1; i <= 12; ++i) {
				for (int j = 0; j <= 3; ++j) {
					for (int k = 0; k < 10; ++k) {
						if (j * 10 + k <= 30 && i == j + k) {
							++ans;
						}
					}
				}
			}

			System.out.println(ans);
		} catch (Exception e) {
			e.printStackTrace();
		}
	}
}
0