結果
問題 | No.721 Die tertia (ディエ・テルツィア) |
ユーザー | tac |
提出日時 | 2019-07-20 13:42:10 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,557 bytes |
コンパイル時間 | 657 ms |
コンパイル使用メモリ | 72,560 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-09 10:16:41 |
合計ジャッジ時間 | 1,346 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 1 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,944 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,944 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 2 ms
6,944 KB |
testcase_19 | AC | 2 ms
6,940 KB |
testcase_20 | AC | 1 ms
6,940 KB |
ソースコード
#include<iostream> #include<iomanip> using namespace std; int uruu(int y) { if (y % 4 == 0) { if (y % 100 == 0) { if (y % 400 == 0) { return 1; } return 0; } return 1; } return 0; } int main() { ios::sync_with_stdio(false); cin.tie(0); int days[] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; string tmp; cin >> tmp; int m, d, y; d = stoi(tmp.substr(8, 2)); m = stoi(tmp.substr(5, 2)); if (d <= 26 || (d <= 27 && m != 2)) { cout << tmp.substr(0, 8); cout << setw(2) << setfill('0') << d + 2 << endl; return 0; } y = stoi(tmp.substr(0, 4)); if (m != 12) { int nd = (d + 2) % (m == 2 && uruu(y) == 1 ? 29 + 1 : days[m - 1] + 1); if (nd > d) { cout << tmp.substr(0, 8); cout << setw(2) << setfill('0') << d + 2 << endl; } else { //月が変わる nd++; cout << tmp.substr(0, 5); cout << setw(2) << setfill('0') << m + 1; cout << "/"; cout << setw(2) << setfill('0') << nd << endl; } } else { int nd = (d + 2) % (days[m - 1] + 1); if (nd > d) { cout << tmp.substr(0, 8); cout << setw(2) << setfill('0') << d + 2 << endl; } else { //年が変わる nd++; cout << setw(4) << setfill('0') << y + 1; cout << "/01/"; cout << setw(2) << setfill('0') << nd << endl; } } }