結果

問題 No.188 HAPPY DAY
ユーザー koukonkokoukonko
提出日時 2015-12-14 15:28:36
言語 Java
(openjdk 23)
結果
AC  
実行時間 57 ms / 1,000 ms
コード長 384 bytes
コンパイル時間 2,820 ms
コンパイル使用メモリ 72,668 KB
実行使用メモリ 36,192 KB
最終ジャッジ日時 2024-12-30 20:52:56
合計ジャッジ時間 3,454 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
36,192 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