結果
| 問題 | No.975 ミスターマックスバリュ |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-02-02 09:07:20 |
| 言語 | PyPy2 (7.3.20) |
| 結果 |
AC
|
| 実行時間 | 84 ms / 2,000 ms |
| コード長 | 221 bytes |
| 記録 | |
| コンパイル時間 | 288 ms |
| コンパイル使用メモリ | 77,892 KB |
| 最終ジャッジ日時 | 2025-12-04 02:04:34 |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 9 |
ソースコード
#yuki975 x,n,m=map(int,raw_input().split()) a=map(int,raw_input().split()) b=map(int,raw_input().split()) if x in a and x in b: print 'MrMaxValu' elif x in a: print 'MrMax' elif x in b: print 'MaxValu' else: print -1