結果

問題 No.2350 Four Seasons
ユーザー 3mEhsfd8aG5jx2t3mEhsfd8aG5jx2t
提出日時 2023-06-16 21:52:26
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 259 bytes
コンパイル時間 2,176 ms
コンパイル使用メモリ 202,480 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-24 13:52:16
合計ジャッジ時間 2,966 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define REP(i, n) for (int i = 0; i < (int)(n); i++)
using ll = long long;
using namespace std;
string S[] = {"spring", "summer", "fall", "winter"};
int main() {
  int N;
  cin >> N;
  N -= 3;
  cout << S[(N + 24) % 12 / 3] << endl;
}
0