結果

問題 No.188 HAPPY DAY
ユーザー samplelpmassamplelpmas
提出日時 2016-11-18 01:51:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 45 ms / 1,000 ms
コード長 434 bytes
コンパイル時間 1,618 ms
コンパイル使用メモリ 73,996 KB
実行使用メモリ 50,424 KB
最終ジャッジ日時 2024-06-09 21:43:15
合計ジャッジ時間 2,022 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

public class Main {

    public static void main(String[] args) {

        int[] days = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};

        int count = 0;

        for (int i = 0; i < days.length; i++) {

            for (int j = 0; j < days[i]; j++) {

                if ((i + 1) == (j / 10) + (j % 10)) {
                    count++;
                }

            }

        }

        System.out.println(count);

    }

}
0