結果
問題 | No.1611 Minimum Multiple with Double Divisors |
ユーザー | tenten |
提出日時 | 2021-07-26 14:40:35 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 567 ms / 2,000 ms |
コード長 | 2,107 bytes |
コンパイル時間 | 2,984 ms |
コンパイル使用メモリ | 77,720 KB |
実行使用メモリ | 54,320 KB |
最終ジャッジ日時 | 2024-10-03 02:55:13 |
合計ジャッジ時間 | 14,539 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 567 ms
54,280 KB |
testcase_01 | AC | 416 ms
50,428 KB |
testcase_02 | AC | 416 ms
50,656 KB |
testcase_03 | AC | 414 ms
53,996 KB |
testcase_04 | AC | 418 ms
54,228 KB |
testcase_05 | AC | 433 ms
54,016 KB |
testcase_06 | AC | 409 ms
54,120 KB |
testcase_07 | AC | 416 ms
50,408 KB |
testcase_08 | AC | 410 ms
53,656 KB |
testcase_09 | AC | 428 ms
53,908 KB |
testcase_10 | AC | 315 ms
50,272 KB |
testcase_11 | AC | 371 ms
53,720 KB |
testcase_12 | AC | 391 ms
54,016 KB |
testcase_13 | AC | 382 ms
53,528 KB |
testcase_14 | AC | 371 ms
54,076 KB |
testcase_15 | AC | 363 ms
53,644 KB |
testcase_16 | AC | 368 ms
53,460 KB |
testcase_17 | AC | 374 ms
54,320 KB |
testcase_18 | AC | 407 ms
53,948 KB |
testcase_19 | AC | 87 ms
38,500 KB |
testcase_20 | AC | 85 ms
38,256 KB |
testcase_21 | AC | 72 ms
38,220 KB |
testcase_22 | AC | 85 ms
38,516 KB |
testcase_23 | AC | 71 ms
37,844 KB |
testcase_24 | AC | 83 ms
38,208 KB |
testcase_25 | AC | 84 ms
38,260 KB |
testcase_26 | AC | 86 ms
38,512 KB |
testcase_27 | AC | 76 ms
38,472 KB |
testcase_28 | AC | 50 ms
36,920 KB |
testcase_29 | AC | 50 ms
37,068 KB |
testcase_30 | AC | 49 ms
36,888 KB |
testcase_31 | AC | 50 ms
36,928 KB |
testcase_32 | AC | 49 ms
37,112 KB |
testcase_33 | AC | 49 ms
36,932 KB |
testcase_34 | AC | 49 ms
36,836 KB |
testcase_35 | AC | 50 ms
37,408 KB |
testcase_36 | AC | 49 ms
36,944 KB |
testcase_37 | AC | 49 ms
36,832 KB |
testcase_38 | AC | 49 ms
37,108 KB |
ソースコード
import java.io.*; import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); int[] primes = new int[]{2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31}; int[][] counts = new int[32][primes.length]; for (int i = 2; i <= 31; i++) { int x = i; for (int j = 0; j < primes.length && x > 1; j++) { while (x % primes[j] == 0) { x /= primes[j]; counts[i][j]++; } } } StringBuilder sb = new StringBuilder(); for (int i = 0; i < n; i++) { long x = sc.nextLong(); long y = x; int[] base = new int[primes.length]; long target = 1; for (int j = 0; j < primes.length; j++) { while (y % primes[j] == 0) { base[j]++; y /= primes[j]; } target *= base[j] + 1; } long ans = Long.MAX_VALUE; for (int j = 2; j <= 31; j++) { long tmp = 1; for (int k = 0; k < primes.length; k++) { tmp *= base[k] + counts[j][k] + 1; } if (target * 2 == tmp) { ans = j; break; } } sb.append(x * ans).append("\n"); } System.out.print(sb); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public String next() throws Exception { if (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }