結果
問題 | No.188 HAPPY DAY |
ユーザー | CELICA |
提出日時 | 2020-06-21 14:24:18 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 324 bytes |
コンパイル時間 | 1,453 ms |
コンパイル使用メモリ | 167,784 KB |
実行使用メモリ | 6,816 KB |
最終ジャッジ日時 | 2024-07-03 17:59:09 |
合計ジャッジ時間 | 1,800 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int d[]{31,28,31,30,31,30,31,31,30,31,30,31}; int s{9}; for(int i=1;i<=12;++i) { for (int j=10;j<=d[i-1];++j) { if (j/10+(j%10)==i) ++s; } } cout << s << "\n"; return 0; }