結果

問題 No.854 公平なりんご分配
ユーザー tentententen
提出日時 2020-12-16 10:01:58
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,555 bytes
コンパイル時間 2,573 ms
コンパイル使用メモリ 77,020 KB
実行使用メモリ 111,900 KB
最終ジャッジ日時 2024-09-20 04:32:45
合計ジャッジ時間 26,138 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
46,692 KB
testcase_01 AC 128 ms
41,156 KB
testcase_02 AC 125 ms
41,372 KB
testcase_03 AC 133 ms
41,672 KB
testcase_04 AC 122 ms
40,272 KB
testcase_05 AC 108 ms
41,356 KB
testcase_06 AC 126 ms
41,280 KB
testcase_07 AC 135 ms
41,172 KB
testcase_08 AC 128 ms
41,092 KB
testcase_09 AC 122 ms
41,040 KB
testcase_10 AC 121 ms
41,296 KB
testcase_11 AC 126 ms
41,324 KB
testcase_12 AC 134 ms
41,588 KB
testcase_13 AC 134 ms
41,580 KB
testcase_14 AC 128 ms
41,340 KB
testcase_15 AC 131 ms
41,244 KB
testcase_16 AC 132 ms
41,324 KB
testcase_17 AC 136 ms
41,588 KB
testcase_18 AC 137 ms
41,628 KB
testcase_19 AC 134 ms
41,228 KB
testcase_20 AC 127 ms
41,484 KB
testcase_21 AC 128 ms
41,608 KB
testcase_22 AC 202 ms
44,200 KB
testcase_23 AC 190 ms
43,500 KB
testcase_24 AC 208 ms
46,792 KB
testcase_25 AC 193 ms
43,660 KB
testcase_26 AC 201 ms
49,204 KB
testcase_27 AC 196 ms
44,632 KB
testcase_28 AC 198 ms
45,484 KB
testcase_29 AC 184 ms
42,220 KB
testcase_30 AC 191 ms
43,784 KB
testcase_31 AC 215 ms
46,664 KB
testcase_32 AC 475 ms
87,332 KB
testcase_33 AC 534 ms
71,108 KB
testcase_34 AC 657 ms
106,768 KB
testcase_35 AC 584 ms
95,296 KB
testcase_36 AC 577 ms
57,328 KB
testcase_37 AC 493 ms
84,052 KB
testcase_38 AC 420 ms
74,908 KB
testcase_39 AC 855 ms
111,900 KB
testcase_40 AC 596 ms
72,268 KB
testcase_41 AC 596 ms
87,032 KB
testcase_42 AC 698 ms
101,732 KB
testcase_43 AC 715 ms
93,000 KB
testcase_44 AC 700 ms
104,268 KB
testcase_45 AC 738 ms
64,616 KB
testcase_46 AC 810 ms
102,852 KB
testcase_47 AC 515 ms
73,704 KB
testcase_48 AC 569 ms
101,116 KB
testcase_49 AC 587 ms
101,012 KB
testcase_50 AC 466 ms
84,176 KB
testcase_51 AC 799 ms
107,276 KB
testcase_52 TLE -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
testcase_63 -- -
testcase_64 -- -
testcase_65 -- -
testcase_66 -- -
testcase_67 -- -
testcase_68 -- -
testcase_69 -- -
testcase_70 -- -
testcase_71 -- -
testcase_72 -- -
testcase_73 -- -
testcase_74 -- -
testcase_75 -- -
testcase_76 -- -
testcase_77 -- -
testcase_78 -- -
testcase_79 -- -
testcase_80 -- -
testcase_81 -- -
testcase_82 -- -
testcase_83 -- -
testcase_84 -- -
testcase_85 -- -
testcase_86 -- -
testcase_87 -- -
testcase_88 -- -
testcase_89 -- -
testcase_90 -- -
testcase_91 -- -
testcase_92 -- -
testcase_93 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		boolean[] isNotPrime = new boolean[2000];
		int size = 0;
		for (int i = 2; i < 2000; i++) {
		    if (!isNotPrime[i]) {
		        size++;
		        for (int j = 2; j * i < 2000; j++) {
		            isNotPrime[j * i] = true;
		        }
		    }
		}
		int[] primes = new int[size];
		int idx = 0;
		for (int i = 2; i < 2000; i++) {
		    if (!isNotPrime[i]) {
		        primes[idx] = i;
		        idx++;
		    }
		}
		int[][] counts = new int[n + 1][size];
		for (int i = 0; i < n; i++) {
		    int x = sc.nextInt();
		    for (int j = 0; j < size; j++) {
		        counts[i + 1][j] = counts[i][j];
		        while (x % primes[j] == 0) {
		            counts[i + 1][j]++;
		            x /= primes[j];
		        }
		    }
		}
		int q = sc.nextInt();
		StringBuilder sb = new StringBuilder();
		for (int i = 0; i < q; i++) {
		    int p = sc.nextInt();
		    int left = sc.nextInt() - 1;
		    int right = sc.nextInt();
		    boolean can = true;
		    for (int j = 0; j < size && p > 1; j++) {
		        int limit = counts[right][j] - counts[left][j];
		        for (int k = 0; k < limit; k++) {
		            if (p % primes[j] == 0) {
		                p /= primes[j];
		            } else {
		                break;
		            }
		        }
		    }
		    if (p == 1) {
		        sb.append("Yes");
		    } else {
		        sb.append("NO");
		    }
		    sb.append("\n");
		}
		System.out.print(sb);
	}
}
0