結果

問題 No.1250 汝は倍数なりや?
ユーザー yoshykaiyoshykai
提出日時 2020-11-26 21:16:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 265 ms / 1,000 ms
コード長 2,363 bytes
コンパイル時間 2,760 ms
コンパイル使用メモリ 78,352 KB
実行使用メモリ 50,352 KB
最終ジャッジ日時 2024-07-23 20:58:28
合計ジャッジ時間 10,393 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
50,352 KB
testcase_01 AC 52 ms
36,632 KB
testcase_02 AC 52 ms
37,084 KB
testcase_03 AC 54 ms
36,948 KB
testcase_04 AC 52 ms
37,048 KB
testcase_05 AC 53 ms
36,684 KB
testcase_06 AC 54 ms
36,916 KB
testcase_07 AC 53 ms
37,128 KB
testcase_08 AC 53 ms
37,140 KB
testcase_09 AC 53 ms
37,000 KB
testcase_10 AC 55 ms
36,872 KB
testcase_11 AC 57 ms
37,288 KB
testcase_12 AC 53 ms
37,048 KB
testcase_13 AC 54 ms
36,928 KB
testcase_14 AC 53 ms
37,040 KB
testcase_15 AC 54 ms
37,132 KB
testcase_16 AC 54 ms
37,108 KB
testcase_17 AC 54 ms
36,920 KB
testcase_18 AC 53 ms
36,616 KB
testcase_19 AC 53 ms
36,956 KB
testcase_20 AC 53 ms
37,140 KB
testcase_21 AC 53 ms
36,568 KB
testcase_22 AC 54 ms
37,000 KB
testcase_23 AC 63 ms
37,100 KB
testcase_24 AC 64 ms
37,120 KB
testcase_25 AC 67 ms
38,056 KB
testcase_26 AC 55 ms
37,184 KB
testcase_27 AC 71 ms
37,504 KB
testcase_28 AC 64 ms
37,220 KB
testcase_29 AC 58 ms
37,016 KB
testcase_30 AC 77 ms
37,780 KB
testcase_31 AC 61 ms
37,256 KB
testcase_32 AC 67 ms
37,152 KB
testcase_33 AC 258 ms
44,176 KB
testcase_34 AC 220 ms
43,868 KB
testcase_35 AC 261 ms
45,364 KB
testcase_36 AC 265 ms
45,136 KB
testcase_37 AC 223 ms
44,628 KB
testcase_38 AC 227 ms
43,872 KB
testcase_39 AC 200 ms
43,888 KB
testcase_40 AC 222 ms
44,752 KB
testcase_41 AC 237 ms
43,776 KB
testcase_42 AC 190 ms
43,688 KB
testcase_43 AC 252 ms
43,976 KB
testcase_44 AC 206 ms
43,696 KB
testcase_45 AC 257 ms
45,340 KB
testcase_46 AC 170 ms
43,760 KB
testcase_47 AC 236 ms
44,032 KB
testcase_48 AC 52 ms
36,608 KB
testcase_49 AC 54 ms
36,764 KB
testcase_50 AC 52 ms
37,172 KB
testcase_51 AC 53 ms
37,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
class Main{
  public static void main(String args[])throws IOException{
    int n = readI(),h=readI();
    long l = 1;
    for(int i=0;i<n;i++){
        l*=readI();
        l=l%h;
    }
    if(l==0){
        pl("YES");   
    }else{
        pl("NO"); 
    }
  }

  static final BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
  public static void pr(String str){
    System.out.print(str);
  }
  public static void pl(String str){
    System.out.println(str);
  }
  public static String read(){
    try{
      return ctos((char)br.read());
    }catch(IOException e){
      e.printStackTrace();
      return "";
    }
  }
  public static char readC(){
    try{
      return (char)br.read();
    }catch(IOException e){
      e.printStackTrace();
      return (char)-1;
    }
  }
  public static String readL(){
    try{
      return br.readLine();
    }catch(IOException e){
      e.printStackTrace();
      return "";
    }
  }
  public static String readS(){
    StringBuilder sb = new StringBuilder();
    while(true){
      try{
        int k = br.read();
        if(k==-1||(char)k==' '||(char)k=='\n'){break;}
        sb.append((char)k);
      }catch(IOException e){
        e.printStackTrace();
      }
    }
    return sb.toString();
  }
  public static int readI(){
    return stoi(readS());
  }
  public static long readLong(){
    return stol(readS());
  }
  public static long stol(String s){
    return Long.parseLong(s);
  }
  public static String[] readSs(){
    return readL().split(" ");
  }
  public static int[] readIs(){
    return stoi(readSs());
  }
  public static int stoi(String s){
    return Integer.parseInt(s);
  }
  public static int[] stoi(String s[]){
    int a[]=new int[s.length];
    for(int i=0;i<s.length;i++){
      a[i]=stoi(s[i]);
    }
    return a;
  }
  public static String itos(int i){
    return String.valueOf(i);
  }
  public static String[] itos(int[] a){
    String s[]=new String[a.length];
    for(int i=0;i<a.length;i++){
      s[i]=itos(a[i]);
    }
    return s;
  }
  public static String ctos(char c){
    return String.valueOf(c);
  }
  public static String cstos(char[] c){
    return new String(c);
  }
  public static char stoc(String s){
    return s.charAt(0);
  }
  public static char[] stocs(String s){
    return s.toCharArray();
  }
}
0