結果
問題 | No.188 HAPPY DAY |
ユーザー | smile |
提出日時 | 2016-06-07 04:16:15 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 367 bytes |
コンパイル時間 | 362 ms |
コンパイル使用メモリ | 55,688 KB |
実行使用メモリ | 6,816 KB |
最終ジャッジ日時 | 2024-06-09 20:35:17 |
合計ジャッジ時間 | 662 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:14:20: warning: ‘cnt’ may be used uninitialized in this function [-Wmaybe-uninitialized] 14 | cnt++; | ~~~^~
ソースコード
#include <iostream> int main(){ int a,b,c; int m[] = {31,29,31,30,31,30,31,31,30,31,30,31}; int cnt; for(int i=0;i<12;i++){ for(int j=1;j<m[i]+1;j++){ a = j / 10; b = j % 10; c = a + b; if(c==(i+1)){ cnt++; } } } std::cout << cnt << std::endl; }