結果
問題 | No.546 オンリー・ワン |
ユーザー | tenten |
提出日時 | 2020-09-08 08:27:08 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,503 bytes |
コンパイル時間 | 1,941 ms |
コンパイル使用メモリ | 77,872 KB |
実行使用メモリ | 54,280 KB |
最終ジャッジ日時 | 2024-05-07 00:32:46 |
合計ジャッジ時間 | 4,053 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 121 ms
54,264 KB |
testcase_01 | AC | 122 ms
54,064 KB |
testcase_02 | AC | 122 ms
54,140 KB |
testcase_03 | AC | 124 ms
54,280 KB |
testcase_04 | AC | 121 ms
54,168 KB |
testcase_05 | AC | 120 ms
54,096 KB |
testcase_06 | AC | 123 ms
53,932 KB |
testcase_07 | AC | 122 ms
54,152 KB |
testcase_08 | AC | 110 ms
52,992 KB |
testcase_09 | AC | 114 ms
53,088 KB |
testcase_10 | WA | - |
ソースコード
import java.util.*; public class Main { static final int MAX = 1000000007; public static void main (String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); long left = sc.nextInt(); long right = sc.nextInt(); int[] arr = new int[n]; for (int i = 0; i < n; i++) { arr[i] = sc.nextInt(); } int[] lcms = new int[1 << n]; lcms[0] = 1; long total = 0; for (int i = 1; i < (1 << n); i++) { int pop = getPopcount(i); for (int j = 0; j < n; j++) { if ((i & (1 << j)) != (1 << j)) { continue; } lcms[i] = getLCM(lcms[i ^ (1 << j)], arr[j]); break; } if (pop % 2 == 0) { total -= (right / lcms[i] - (left - 1) / lcms[i]) * pop; } else { total += (right / lcms[i] - (left - 1) / lcms[i]) * pop; } } System.out.println(total); } static int getLCM(int x, int y) { int gcd = getGCD(x, y); if (x / gcd >= MAX / y) { return MAX; } else { return x / gcd * y; } } static int getGCD(int x, int y) { if (x % y == 0) { return y; } else { return getGCD(y, x % y); } } static int getPopcount(int x) { int count = 0; while(x > 0) { count += x % 2; x /= 2; } return count; } }