結果

問題 No.101 ぐるぐる!あみだくじ!
ユーザー takeya_okinotakeya_okino
提出日時 2019-09-07 16:22:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 195 ms / 5,000 ms
コード長 980 bytes
コンパイル時間 2,125 ms
コンパイル使用メモリ 76,976 KB
実行使用メモリ 43,676 KB
最終ジャッジ日時 2024-06-26 21:25:00
合計ジャッジ時間 10,199 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,636 KB
testcase_01 AC 195 ms
43,476 KB
testcase_02 AC 193 ms
43,640 KB
testcase_03 AC 141 ms
41,440 KB
testcase_04 AC 133 ms
41,472 KB
testcase_05 AC 191 ms
43,512 KB
testcase_06 AC 140 ms
41,328 KB
testcase_07 AC 183 ms
42,508 KB
testcase_08 AC 181 ms
43,208 KB
testcase_09 AC 174 ms
42,288 KB
testcase_10 AC 182 ms
42,380 KB
testcase_11 AC 179 ms
42,092 KB
testcase_12 AC 188 ms
43,164 KB
testcase_13 AC 193 ms
43,676 KB
testcase_14 AC 195 ms
42,448 KB
testcase_15 AC 181 ms
42,972 KB
testcase_16 AC 190 ms
42,916 KB
testcase_17 AC 179 ms
42,824 KB
testcase_18 AC 176 ms
42,536 KB
testcase_19 AC 192 ms
42,644 KB
testcase_20 AC 182 ms
42,252 KB
testcase_21 AC 179 ms
42,724 KB
testcase_22 AC 183 ms
42,360 KB
testcase_23 AC 192 ms
43,636 KB
testcase_24 AC 181 ms
42,436 KB
testcase_25 AC 189 ms
43,524 KB
testcase_26 AC 191 ms
43,536 KB
testcase_27 AC 187 ms
43,356 KB
testcase_28 AC 181 ms
42,256 KB
testcase_29 AC 187 ms
43,200 KB
testcase_30 AC 178 ms
42,876 KB
testcase_31 AC 190 ms
42,968 KB
testcase_32 AC 184 ms
42,744 KB
testcase_33 AC 192 ms
43,116 KB
testcase_34 AC 124 ms
41,244 KB
testcase_35 AC 116 ms
40,636 KB
testcase_36 AC 127 ms
41,472 KB
testcase_37 AC 140 ms
41,544 KB
testcase_38 AC 143 ms
41,600 KB
testcase_39 AC 140 ms
41,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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;
      int s = sig[x];
      sig[x] = sig[y];
      sig[y] = s;
    }
    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));
  }
}
0