結果

問題 No.975 ミスターマックスバリュ
ユーザー 𖧱𖦸𖥩𖥣𖥩𖥣𖧱𖦸𖥩𖥣𖥩𖥣
提出日時 2024-05-08 17:19:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 199 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 16,072 KB
最終ジャッジ日時 2024-05-08 17:19:15
合計ジャッジ時間 1,448 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 28 ms
11,008 KB
testcase_08 AC 49 ms
16,072 KB
testcase_09 WA -
testcase_10 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

x,n,m = map(int,input().split())
k = 0
ls = list(map(int,input().split()))
if x in ls:
	k += 1
ls = list(map(int,input().split()))
if x in ls:
	k += 2
print(["-1","MrMax","MaxValue","MrMaxValue"][k])
0