結果
| 問題 |
No.2350 Four Seasons
|
| コンテスト | |
| ユーザー |
kekenx
|
| 提出日時 | 2023-08-07 22:16:05 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 251 bytes |
| コンパイル時間 | 488 ms |
| コンパイル使用メモリ | 67,968 KB |
| 最終ジャッジ日時 | 2025-02-16 00:02:05 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 10 |
ソースコード
#include <iostream>
using namespace std;
string t[13] = {"", "winter", "winter", "spring", "spring", "spring", "summer", "summer", "summer", "fall", "fall", "fall", "winter" };
int main() {
int x;
cin >> x;
cout << t[x] << '\n';
return 0;
}
kekenx