結果

問題 No.975 ミスターマックスバリュ
ユーザー 54km54km
提出日時 2020-03-17 20:36:28
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 974 bytes
コンパイル時間 2,563 ms
コンパイル使用メモリ 77,256 KB
実行使用メモリ 50,916 KB
最終ジャッジ日時 2024-05-08 01:23:36
合計ジャッジ時間 4,221 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,124 KB
testcase_01 AC 112 ms
41,476 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 105 ms
41,632 KB
testcase_05 AC 134 ms
41,596 KB
testcase_06 AC 116 ms
41,488 KB
testcase_07 AC 125 ms
41,872 KB
testcase_08 AC 256 ms
50,916 KB
testcase_09 WA -
testcase_10 AC 100 ms
41,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main{
  public static void main(String[] args) {
    Scanner scan = new Scanner(System.in);
    boolean mr = false;
    boolean value = false;
    int i = 0;
    String appoi = scan.nextLine();
    String mrmax = scan.nextLine();
    String maxvalue = scan.nextLine();
    String[] appoi2 = appoi.split(" ");
    String[] mrmax2 = mrmax.split(" ");
    String[] maxvalue2 = maxvalue.split(" ");
    for(;i < mrmax2.length;i++){
      if(appoi2[0].equals(mrmax2[i])){
        mr = true;
        break;
      }
    }
    for(;i < maxvalue2.length;i++){
      if(appoi2[0].equals(maxvalue2[i])){
        value = true;
        break;
      }
    }
    if(mr == true && value == false){
      System.out.println("MrMax");
    }else if(mr == false && value == true){
      System.out.println("MaxValu");
    }else if(mr == true && value == true){
      System.out.println("MrMaxValu");
    }else{
      System.out.println("-1");
    }
  }
}
0