結果

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

ソースコード

diff #

#include <algorithm>
#include <bit>
#include <cassert>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <deque>
#include <iostream>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <vector>
#include <set>
#include <string>

using namespace::std;



int main() {
  ios::sync_with_stdio(false);
  int n;
  cin >> n;
  vector<std::string> t {"winter", "spring", "summer", "fall"};
  cout << t[(n % 12) / 3] << endl;
  
  return 0;
}

0