結果
問題 | No.2350 Four Seasons |
ユーザー |
![]() |
提出日時 | 2023-06-16 22:10:20 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 44 ms / 2,000 ms |
コード長 | 301 bytes |
コンパイル時間 | 243 ms |
コンパイル使用メモリ | 82,396 KB |
実行使用メモリ | 54,016 KB |
最終ジャッジ日時 | 2024-06-24 14:35:05 |
合計ジャッジ時間 | 1,356 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 10 |
ソースコード
from collections import defaultdict, dequefrom sys import stdinreadline = stdin.readlinedef li():return list(map(int, readline().split()))X = int(input())x = X // 3if x == 1:print("spring")elif x == 2:print("summer")elif x == 3:print("fall")else:print("winter")