結果

問題 No.975 ミスターマックスバリュ
ユーザー stngstng
提出日時 2022-08-16 20:43:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 384 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 81,964 KB
実行使用メモリ 68,780 KB
最終ジャッジ日時 2024-10-03 13:39:08
合計ジャッジ時間 1,323 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,288 KB
testcase_01 AC 33 ms
52,876 KB
testcase_02 AC 32 ms
52,236 KB
testcase_03 AC 31 ms
53,420 KB
testcase_04 AC 31 ms
52,608 KB
testcase_05 AC 31 ms
52,392 KB
testcase_06 AC 34 ms
53,092 KB
testcase_07 AC 34 ms
52,628 KB
testcase_08 AC 46 ms
68,780 KB
testcase_09 AC 32 ms
52,360 KB
testcase_10 AC 32 ms
52,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x,n,m = map(int,input().split())
a = [int(i) for i in input().split()]
b = [int(i) for i in input().split()]

mr = 0

for i in range(n):
    if a[i] == x:
        mr = 1
        break

vl = 0
for i in range(m):
    if b[i] == x:
        vl = 1
        break

if mr+vl == 2:
    print("MrMaxValu")
elif mr == 1:
    print("MrMax")
elif vl == 1:
    print("MaxValu")
else:
    print(-1)
0