結果

問題 No.2098 [Cherry Alpha *] Introduction
ユーザー roarisroaris
提出日時 2022-10-14 21:22:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 282 bytes
コンパイル時間 1,557 ms
コンパイル使用メモリ 86,668 KB
実行使用メモリ 71,708 KB
最終ジャッジ日時 2023-09-08 20:12:20
合計ジャッジ時間 2,179 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
71,268 KB
testcase_01 AC 90 ms
71,556 KB
testcase_02 AC 89 ms
71,708 KB
testcase_03 AC 90 ms
71,636 KB
testcase_04 AC 90 ms
71,448 KB
testcase_05 AC 94 ms
71,676 KB
testcase_06 AC 91 ms
71,400 KB
testcase_07 AC 96 ms
71,672 KB
testcase_08 AC 90 ms
71,412 KB
testcase_09 AC 90 ms
71,524 KB
testcase_10 AC 90 ms
71,596 KB
testcase_11 AC 92 ms
71,436 KB
testcase_12 AC 90 ms
71,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

S = input()[:-1]

if S=='Zelkova and Cherry':
    print('1st')
elif S=='BANNED CONTEST':
    print('2nd')
elif S=='Stray Bullet':
    print('3rd')
elif S=='Early Summer Rain':
    print('4th')
else:
    print('Alpha')
0