結果
問題 | No.188 HAPPY DAY |
ユーザー | ninoinui |
提出日時 | 2020-01-20 20:38:12 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 310 bytes |
コンパイル時間 | 1,659 ms |
コンパイル使用メモリ | 166,516 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-07-02 23:01:06 |
合計ジャッジ時間 | 2,076 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { struct tm t = {}; t.tm_year = 2015; t.tm_mon = 1; t.tm_mday = 1; int ans = 0; for (int i = 0; i < 365; i++) { int n = t.tm_mday; if (t.tm_mon == n / 10 + n % 10) ans++; t.tm_mday++; mktime(&t); } cout << ans << "\n"; }