結果

問題 No.188 HAPPY DAY
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-13 21:46:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 105 ms / 1,000 ms
コード長 501 bytes
コンパイル時間 1,811 ms
コンパイル使用メモリ 74,040 KB
実行使用メモリ 53,556 KB
最終ジャッジ日時 2024-06-09 21:43:08
合計ジャッジ時間 2,341 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int [] Days = {31,28,31,30,31,30,31,31,30,31,30,31};
        int count=0;
        for(int i=1; i<=12; i++){
            for(int j=1; j<=Days[i-1]; j++){
                int a10 = j/10;
                int a01 = j%10;
                if(i==a10+a01){
                    count++;
                }
            }
        }
        System.out.println(count);
    }
}
0