結果

問題 No.1064 ∪∩∩ / Cup Cap Cap
ユーザー watarimaycry2watarimaycry2
提出日時 2020-05-29 21:44:32
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 3,071 bytes
コンパイル時間 2,284 ms
コンパイル使用メモリ 79,640 KB
実行使用メモリ 37,616 KB
最終ジャッジ日時 2024-04-23 21:04:46
合計ジャッジ時間 5,144 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 47 ms
36,992 KB
testcase_02 AC 44 ms
37,224 KB
testcase_03 WA -
testcase_04 AC 45 ms
37,244 KB
testcase_05 AC 49 ms
36,792 KB
testcase_06 AC 51 ms
36,988 KB
testcase_07 AC 48 ms
37,136 KB
testcase_08 AC 46 ms
36,988 KB
testcase_09 AC 44 ms
37,084 KB
testcase_10 AC 44 ms
37,140 KB
testcase_11 AC 45 ms
37,144 KB
testcase_12 AC 44 ms
37,216 KB
testcase_13 AC 44 ms
36,980 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 45 ms
37,464 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 45 ms
37,228 KB
testcase_38 WA -
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
public class Main{
  //↓見なくていいよ!ここから------------------------------------------
  static public class InputIterator{
    ArrayList<String> inputLine = new ArrayList<String>(1024);
    int index = 0; int max;
    InputIterator(){
      BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
      while(true){
        String read;
        try{
          read = br.readLine();
        }catch(IOException e){
          read = null;
        }
        if(read != null){
          inputLine.add(read);
        }else{
          break;
        }
      }
      max = inputLine.size();
    }
    public boolean hasNext(){return (index < max);}
    public String next(){
      if(hasNext()){
        String returnStr = inputLine.get(index);
        index++;
        return returnStr;
      }else{
        throw new IndexOutOfBoundsException("これ以上入力はないよ。");
      }
    }
  }
  
  static InputIterator ii = new InputIterator(); 
  static PrintWriter out = new PrintWriter(System.out);
  static void myout(Object t){out.println(t);}
  static void myerr(Object t){System.err.println(t);}
  static String next(){return ii.next();}
  static int nextInt(){return Integer.parseInt(next());}
  static long nextLong(){return Long.parseLong(next());}
  static ArrayList<String> nextStrArray(){return myHanSpSplit(next());}
  static ArrayList<String> myHanSpSplit(String str){return new ArrayList<String>(Arrays.asList(str.split(" ")));}
  static ArrayList<String> nextCharArray(){return mySingleSplit(next());}
  static ArrayList<String> mySingleSplit(String str){return new ArrayList<String>(Arrays.asList(str.split("")));}
  static ArrayList<Integer> nextIntArray(){
    ArrayList<Integer> ret = new ArrayList<Integer>();
    ArrayList<String> input = nextStrArray();
    for(int i = 0; i < input.size(); i++){
      ret.add(Integer.parseInt(input.get(i)));
    }
    return ret;
  }
  static ArrayList<Long> nextLongArray(){
    ArrayList<Long> ret = new ArrayList<Long>();
    ArrayList<String> input = nextStrArray();
    for(int i = 0; i < input.size(); i++){
      ret.add(Long.parseLong(input.get(i)));
    }
    return ret;
  }
  static String kaigyoToStr(String[] list){return String.join("\n",list);}
  static String kaigyoToStr(ArrayList<String> list){return String.join("\n",list);}
  static String hanSpToStr(String[] list){return String.join(" ",list);}
  static String hanSpToStr(ArrayList<String> list){return String.join(" ",list);}
  public static void main(String[] args){
    solve();
    out.flush();
  }
  //↑見なくていいよ!ここまで------------------------------------------
  static public void solve(){//ここがメイン関数代わり
    ArrayList<Integer> one = nextIntArray();
    int A = one.get(0);
    int B = one.get(1);
    int C = one.get(2);
    int D = one.get(3);
    if(B == D){
      myout("Yes");
    }else if(B > D){
      myout("No");
    }else{
      
    }
  }
  //Method addition frame start

  //Method addition frame end
}
0