結果
問題 | No.188 HAPPY DAY |
ユーザー | 37kt_ |
提出日時 | 2015-09-04 20:32:48 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 854 bytes |
コンパイル時間 | 1,164 ms |
コンパイル使用メモリ | 157,796 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-06-09 20:12:42 |
合計ジャッジ時間 | 1,505 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:25:30: warning: iteration 11 invokes undefined behavior [-Waggressive-loop-optimizations] 25 | FOR(j, 1, T[i] + 1){ | ~~~^ main.cpp:5:55: note: in definition of macro ‘FOR’ 5 | #define FOR(i, a, b) for (int i = (int)(a); i < (int)(b); i++) | ^ main.cpp:5:47: note: within this loop 5 | #define FOR(i, a, b) for (int i = (int)(a); i < (int)(b); i++) | ^ main.cpp:24:9: note: in expansion of macro ‘FOR’ 24 | FOR(i, 1, 13){ | ^~~
ソースコード
#include <bits/stdc++.h> using namespace std; #define BIT(x) (1ull << (x)) #define FOR(i, a, b) for (int i = (int)(a); i < (int)(b); i++) #define REP(i, n) FOR(i, 0, n) #define RFOR(i, a, b) for (int i = (int)(b) - 1; i >= (int)(a); i--) #define RREP(i, n) RFOR(i, 0, n) #define EACH(i, v) for (__typeof((v).begin()) i = (v).begin(); i != (v).end(); ++i) #define ALL(v) (v).begin(), (v).end() #define RALL(v) (v).rbegin(), (v).rend() #define UNIQ(v) do {sort(ALL(v)); (v).erase(unique(ALL(v)), (v).end());} while (0) #define PB push_back #define MP make_pair #define SIZE(v) ((int)(v).size()) #define DEBUG(x) cout << #x << " = " << x << endl int main() { int T[] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; int res = 0; FOR(i, 1, 13){ FOR(j, 1, T[i] + 1){ int t = j / 10 + j % 10; if (i == t) res++; } } printf("%d\n", res); }