結果
| 問題 | No.2098 [Cherry Alpha *] Introduction |
| コンテスト | |
| ユーザー |
sepa38
|
| 提出日時 | 2022-10-14 21:30:09 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 62 ms / 2,000 ms |
| + 769µs | |
| コード長 | 295 bytes |
| 記録 | |
| コンパイル時間 | 234 ms |
| コンパイル使用メモリ | 96,236 KB |
| 実行使用メモリ | 78,848 KB |
| 最終ジャッジ日時 | 2026-07-30 13:34:44 |
| 合計ジャッジ時間 | 2,097 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 13 |
ソースコード
ls = ["a", "Zelkova and Cherry", "BANNED CONTEST" ,"Stray Bullet", "Early Summer Rain"]
s = input()
if s in ls:
if ls.index(s) > 3:
print(f"{ls.index(s)}th")
elif ls.index(s) == 1:
print("1st")
elif ls.index(s) == 2:
print("2nd")
else:
print("3rd")
else:
print("Alpha")
sepa38