結果
| 問題 |
No.2350 Four Seasons
|
| コンテスト | |
| ユーザー |
shojin
|
| 提出日時 | 2024-05-03 13:46:12 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 162 bytes |
| コンパイル時間 | 3,771 ms |
| コンパイル使用メモリ | 272,880 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-24 14:08:19 |
| 合計ジャッジ時間 | 4,039 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | WA * 10 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main(){
int X;
cin >> X;
string a[] = {"spring", "summer", "fall", "winter"};
cout << a[X % 12 / 3];
}
shojin