結果
| 問題 | No.2350 Four Seasons |
| コンテスト | |
| ユーザー |
maron8676
|
| 提出日時 | 2023-06-16 22:10:20 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 77 ms / 2,000 ms |
| + 38µs | |
| コード長 | 301 bytes |
| 記録 | |
| コンパイル時間 | 232 ms |
| コンパイル使用メモリ | 95,852 KB |
| 実行使用メモリ | 79,360 KB |
| 最終ジャッジ日時 | 2026-07-29 04:15:57 |
| 合計ジャッジ時間 | 2,595 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 10 |
ソースコード
from collections import defaultdict, deque
from sys import stdin
readline = stdin.readline
def li():
return list(map(int, readline().split()))
X = int(input())
x = X // 3
if x == 1:
print("spring")
elif x == 2:
print("summer")
elif x == 3:
print("fall")
else:
print("winter")
maron8676