結果

問題 No.975 ミスターマックスバリュ
ユーザー Yosuke YamaguchiYosuke Yamaguchi
提出日時 2021-02-16 10:05:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 436 ms / 2,000 ms
コード長 1,148 bytes
コンパイル時間 3,565 ms
コンパイル使用メモリ 78,296 KB
実行使用メモリ 59,816 KB
最終ジャッジ日時 2024-09-13 01:18:14
合計ジャッジ時間 6,207 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,276 KB
testcase_01 AC 131 ms
54,280 KB
testcase_02 AC 130 ms
53,844 KB
testcase_03 AC 132 ms
53,976 KB
testcase_04 AC 132 ms
54,464 KB
testcase_05 AC 169 ms
54,260 KB
testcase_06 AC 168 ms
54,436 KB
testcase_07 AC 175 ms
54,528 KB
testcase_08 AC 436 ms
59,816 KB
testcase_09 AC 127 ms
54,020 KB
testcase_10 AC 124 ms
54,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

// https://yukicoder.me/problems/no/975
public class MrMaxValue975 {
  public static void main(String[] args) {
    // 標準入力から読み込む際に、Scan
    Scanner sc = new Scanner(System.in);
    int itemNumber = Integer.parseInt(sc.next());
    int mrMaxItemNumber = Integer.parseInt(sc.next());
    int maxValuItemNumber = Integer.parseInt(sc.next());
    List<Integer> mrMaxItemList = new ArrayList<Integer>();
    List<Integer> maxValuItemList = new ArrayList<Integer>();

    for (int i = 0; i < mrMaxItemNumber; i++) {
      mrMaxItemList.add(Integer.parseInt(sc.next()));
    }
    for (int j = 0; j < maxValuItemNumber; j++) {
      maxValuItemList.add(Integer.parseInt(sc.next()));
    }
    if (mrMaxItemList.contains(itemNumber) && maxValuItemList.contains(itemNumber)) {
      System.out.println("MrMaxValu");
    } else if (mrMaxItemList.contains(itemNumber)) {
      System.out.println("MrMax");
    } else if (maxValuItemList.contains(itemNumber)) {
      System.out.println("MaxValu");
    } else {
      System.out.println("-1");
    }
  }
}
0