結果
問題 | No.2350 Four Seasons |
ユーザー | artemis_1889 |
提出日時 | 2023-06-16 21:23:47 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 963 bytes |
コンパイル時間 | 2,215 ms |
コンパイル使用メモリ | 201,136 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-24 12:53:49 |
合計ジャッジ時間 | 2,675 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; typedef long long ll; typedef vector<int> vi; #define all(v) v.begin(), v.end() #define MOD 1000000007 #define MOD2 998244353 #define MX 1000000000 #define MXL 1000000000000000000 #define PI (ld)2*acos(0.0) #define pb push_back #define sc second #define fr first #define endl '\n' #define ld long double #define NO cout << "NO" << endl #define YES cout << "YES" << endl #define fo(a,b,c) for (a=b; a<=c; a++) #define fd(a,b,c) for (a=b; a>=c; a--) ll n,m,k,q,l,r,x,y,z; const ll template_array_size=1e6+585; ll a[template_array_size]; ll b[template_array_size]; ll c[template_array_size]; string s, t; ll ans=0; void solve(int tc=0){ ll n; cin>>n; if(n>=3 and n<=5){ cout<<"spring"; } else if(n>=6 && n<=8){ cout<<"spring"; } else if(n>=9 and n<=11) cout<<"fall"; else cout<<"winter"; } int main(){ int tc=1; //cin>>tc; for(int t=0;t<tc;t++) solve(t); }