結果

問題 No.2098 [Cherry Alpha *] Introduction
ユーザー Akijin_007Akijin_007
提出日時 2022-10-14 21:25:07
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 308 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 86,624 KB
実行使用メモリ 71,040 KB
最終ジャッジ日時 2023-09-08 20:14:15
合計ジャッジ時間 1,912 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
71,032 KB
testcase_01 AC 67 ms
70,988 KB
testcase_02 AC 66 ms
70,656 KB
testcase_03 AC 68 ms
70,864 KB
testcase_04 AC 66 ms
70,856 KB
testcase_05 AC 65 ms
70,840 KB
testcase_06 AC 69 ms
70,648 KB
testcase_07 AC 66 ms
71,016 KB
testcase_08 AC 68 ms
71,040 KB
testcase_09 AC 69 ms
70,976 KB
testcase_10 AC 68 ms
70,952 KB
testcase_11 AC 68 ms
70,824 KB
testcase_12 AC 68 ms
70,820 KB
権限があれば一括ダウンロードができます

ソースコード

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