結果

問題 No.3279 Dhole vs Monster
ユーザー nikoro256
提出日時 2025-09-26 21:21:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 118 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,628 KB
実行使用メモリ 53,568 KB
最終ジャッジ日時 2025-09-26 21:21:48
合計ジャッジ時間 1,739 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 14
権限があれば一括ダウンロードができます

ソースコード

diff #

L,S=map(str,input().split())
a = [390,429,468,507,546]
if S=="Beat":
    print(a[int(L)])
else:
    print(a[int(L)-1])
0