結果

問題 No.188 HAPPY DAY
ユーザー ko_ki_leoko_ki_leo
提出日時 2015-10-11 17:15:51
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 305 bytes
コンパイル時間 1,108 ms
コンパイル使用メモリ 157,788 KB
実行使用メモリ 16,956 KB
最終ジャッジ日時 2024-06-09 20:14:57
合計ジャッジ時間 3,911 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:10:23: warning: iteration 11 invokes undefined behavior [-Waggressive-loop-optimizations]
   10 |     for(int j=1;j<=a[i];j++){
      |                    ~~~^
main.cpp:9:16: note: within this loop
    9 |   for(int i=1;i<13;i++){
      |               ~^~~

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

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

int main(){

  int ans = 0;
  for(int i=1;i<13;i++){
    for(int j=1;j<=a[i];j++){
      if(i == (j%10 + j/10)){
	cout << i << " " << j << endl;
	ans++;
      }
    }
  }

  cout << ans << endl;

}
0