結果
| 問題 | No.2350 Four Seasons |
| コンテスト | |
| ユーザー |
shojin
|
| 提出日時 | 2024-05-03 13:46:12 |
| 言語 | C++23 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 162 bytes |
| 記録 | |
| コンパイル時間 | 2,251 ms |
| コンパイル使用メモリ | 330,796 KB |
| 実行使用メモリ | 7,976 KB |
| 最終ジャッジ日時 | 2026-05-18 15:00:24 |
| 合計ジャッジ時間 | 3,658 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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