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