結果

問題 No.188 HAPPY DAY
ユーザー mytkytmytkyt
提出日時 2018-03-22 02:26:46
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 1 ms / 1,000 ms
コード長 339 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 30,720 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-04-20 04:41:26
合計ジャッジ時間 494 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<stdio.h>

int main(){
  int i,j;
  int d;
  int count=0;
  int day[13]={31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
  for(i=1; i <= 12; i++){
    for(j=1; j <=day[i-1]; j++){
      d = j/10 + j%10;
      if(i == d){
        //printf("%d,%d\n", i, j);
        count++;
      }
    }
  }
  printf("%d\n", count);
  return 0;
}
0