結果
問題 | No.101 ぐるぐる!あみだくじ! |
ユーザー | takeya_okino |
提出日時 | 2019-09-07 15:42:14 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 963 bytes |
コンパイル時間 | 2,099 ms |
コンパイル使用メモリ | 77,416 KB |
実行使用メモリ | 61,232 KB |
最終ジャッジ日時 | 2024-06-26 20:36:09 |
合計ジャッジ時間 | 9,136 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 124 ms
52,760 KB |
testcase_01 | AC | 182 ms
56,544 KB |
testcase_02 | WA | - |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int k = sc.nextInt(); int[] sig = new int[n]; for(int i = 0; i < n; i++) { sig[i] = i; } for(int i = 0; i < k; i++) { int x = sc.nextInt() - 1; int y = sc.nextInt() - 1; sig[x] = sig[y]; sig[y] = sig[x]; } int[] sig2 = new int[n]; for(int i = 0; i < n; i++) { sig2[sig[i]] = i; } int[] b = new int[n]; for(int i = 0; i < n; i++) { int t = 1; int p = i; while(sig2[p] != i) { t++; p = sig2[p]; } b[i] = t; } long lcm = 1; for(int i = 0; i < n; i++) { long g = gcd(lcm, (long)b[i]); lcm = g * (lcm / g) * ((long)b[i] / g); } System.out.println(lcm); } public static long gcd(long a, long b) { if(b == 0) return a; return gcd(b, (a % b)); } }