結果
問題 | No.188 HAPPY DAY |
ユーザー | drken1215 |
提出日時 | 2015-04-22 00:04:08 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 1,081 bytes |
コンパイル時間 | 615 ms |
コンパイル使用メモリ | 57,080 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-30 19:38:49 |
合計ジャッジ時間 | 973 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 1 |
ソースコード
#include <iostream> #include <string> #include <vector> using namespace std; #define COUT(x) cout << #x << " = " << (x) << " (L" << __LINE__ << ")" << endl template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } template<class T1, class T2> ostream& operator << (ostream &s, pair<T1,T2> P) { return s << '<' << P.first << ", " << P.second << '>'; } template<class T> ostream& operator << (ostream &s, vector<T> P) { for (int i = 0; i < P.size(); ++i) { if (i > 0) { s << " "; } s << P[i]; } return s; } template<class T> ostream& operator << (ostream &s, vector<vector<T> > P) { for (int i = 0; i < P.size(); ++i) { s << endl << P[i]; } return s << endl; } int days[12] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; int main() { int res = 0; for (int i = 0; i < 12; ++i) { for (int j = 0; j < days[i]; ++j) { int sum = j/10 + j%10; if (sum == i+1) ++res; } } cout << res << endl; }