結果
| 問題 |
No.2350 Four Seasons
|
| コンテスト | |
| ユーザー |
kolvlmam3
|
| 提出日時 | 2023-10-16 01:16:23 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 455 bytes |
| コンパイル時間 | 1,752 ms |
| コンパイル使用メモリ | 193,392 KB |
| 最終ジャッジ日時 | 2025-02-17 08:01:04 |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 10 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#ifdef local
#include "debug.hpp"
#else
#define debug(...) ;
#endif
int main(void) {
ios::sync_with_stdio(false);
cin.tie(nullptr);
constexpr char endl = '\n';
int x;
cin >> x;
string ans = "winter";
if (3 <= x && x <= 5) ans = "spring";
else if (6 <= x && x <= 8) ans = "summer";
else if (9 <= x && x <= 11) ans = "fall";
cout << ans << endl;
return 0;
}
kolvlmam3