結果

問題 No.1048 Zero (Advanced)
ユーザー watarimaycry2watarimaycry2
提出日時 2020-05-08 22:51:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 3,451 bytes
コンパイル時間 3,385 ms
コンパイル使用メモリ 74,544 KB
実行使用メモリ 49,668 KB
最終ジャッジ日時 2023-09-17 03:19:48
合計ジャッジ時間 5,312 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
49,608 KB
testcase_01 AC 44 ms
49,276 KB
testcase_02 AC 43 ms
49,560 KB
testcase_03 AC 42 ms
49,444 KB
testcase_04 AC 43 ms
49,284 KB
testcase_05 AC 43 ms
49,284 KB
testcase_06 AC 44 ms
49,388 KB
testcase_07 AC 43 ms
49,360 KB
testcase_08 AC 43 ms
49,552 KB
testcase_09 AC 44 ms
49,460 KB
testcase_10 AC 44 ms
49,360 KB
testcase_11 AC 44 ms
49,548 KB
testcase_12 AC 44 ms
49,428 KB
testcase_13 AC 43 ms
49,364 KB
testcase_14 AC 44 ms
49,288 KB
testcase_15 AC 43 ms
49,392 KB
testcase_16 AC 43 ms
49,440 KB
testcase_17 AC 43 ms
49,668 KB
testcase_18 AC 43 ms
49,252 KB
権限があれば一括ダウンロードができます

ソースコード

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 void myout(Object t){System.out.println(t);}//standard output
        static void myerr(Object t){System.err.println(t);}//standard error
        static String next(){return ii.next();}
        static int nextInt(){return Integer.parseInt(next());}
        static long nextLong(){return Long.parseLong(next());}
        static String[] nextStrArray(){return next().split(" ");}
        static ArrayList<Integer> nextIntArray(){
          ArrayList<Integer> ret = new ArrayList<Integer>();
          String[] input = nextStrArray();
          for(int i = 0; i < input.length; i++){
            ret.add(Integer.parseInt(input[i]));
          }
          return ret;
        }
        static ArrayList<Long> nextLongArray(){
          ArrayList<Long> ret = new ArrayList<Long>();
          String[] input = nextStrArray();
          for(int i = 0; i < input.length; i++){
            ret.add(Long.parseLong(input[i]));
          }
          return ret;
        }
        static char[] nextCharArray(){return mySplit(next());}
        static char[] mySplit(String str){return str.toCharArray();}
        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){
          ArrayList<Long> tmp = nextLongArray();
          long L = tmp.get(0);
          long R = tmp.get(1);
          long M = tmp.get(2);
          long K = tmp.get(3);
          if(K == 0 || M == 1 || L == 0){
		    myout("Yes");
		    return;
	      }
          long maxL = L * K;
          long maxR = R * K;
          if(maxR - maxL > M){
            myout("Yes");
          }else{
            maxL %= M;
            maxR %= M;
            if(maxL > maxR){
              myout("Yes");
            }else if(maxL == maxR && maxL == 0){
              myout("Yes");
            }else if(maxL == 0 || maxR == 0){
              myout("Yes");
            }else{
              myout("No");
            }
          }
          
        }
        //Method addition frame start

        //Method addition frame end
}
0