結果

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

ソースコード

diff #

import sys
input = sys.stdin.readline
L, S = input().split()
A = [390,429,468,507,546]
L = int(L)
L-=1
if S=="Beat":
    L+=1
print(A[L])
0