結果

問題 No.975 ミスターマックスバリュ
ユーザー matrie
提出日時 2020-11-28 21:53:23
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 172 bytes
コンパイル時間 111 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 14,424 KB
最終ジャッジ日時 2024-09-13 01:39:26
合計ジャッジ時間 1,107 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

x,a,b = input().split()
mm = input().split()
mv = input().split()
s = -1
if x in mm and x in mv:s="MrMaxValu"
elif x in mm: s = "MrMax"
elif x in mv: s = "MaxValu"
print(s)
0