結果

問題 No.2098 [Cherry Alpha *] Introduction
ユーザー Akijin_007
提出日時 2022-10-14 21:25:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 308 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 53,348 KB
最終ジャッジ日時 2024-06-26 13:07:40
合計ジャッジ時間 1,230 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

#int(input())
#map(int, input().split())
#list(map(int, input().split()))

S = input()

a = [
    "1st",
    "2nd",
    "3rd",
    "4th",
    "Alpha"]

b = [
    "Zelkova and Cherry",
    "BANNED CONTEST",
    "Stray Bullet",
    "Early Summer Rain",
    "Do you know Cherry Contest?"
]

print(a[b.index(S)])
0