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