結果

問題 No.101 ぐるぐる!あみだくじ!
ユーザー htensaihtensai
提出日時 2020-05-14 17:16:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 203 ms / 5,000 ms
コード長 959 bytes
コンパイル時間 2,454 ms
コンパイル使用メモリ 77,536 KB
実行使用メモリ 43,272 KB
最終ジャッジ日時 2024-09-15 11:55:11
合計ジャッジ時間 11,296 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
40,964 KB
testcase_01 AC 203 ms
43,064 KB
testcase_02 AC 200 ms
42,992 KB
testcase_03 AC 153 ms
41,192 KB
testcase_04 AC 140 ms
41,052 KB
testcase_05 AC 197 ms
43,068 KB
testcase_06 AC 143 ms
41,128 KB
testcase_07 AC 194 ms
42,360 KB
testcase_08 AC 194 ms
42,600 KB
testcase_09 AC 174 ms
41,888 KB
testcase_10 AC 187 ms
42,376 KB
testcase_11 AC 191 ms
41,916 KB
testcase_12 AC 185 ms
42,664 KB
testcase_13 AC 197 ms
42,776 KB
testcase_14 AC 188 ms
42,140 KB
testcase_15 AC 182 ms
42,484 KB
testcase_16 AC 197 ms
42,996 KB
testcase_17 AC 186 ms
42,760 KB
testcase_18 AC 181 ms
42,012 KB
testcase_19 AC 186 ms
42,784 KB
testcase_20 AC 188 ms
41,940 KB
testcase_21 AC 193 ms
42,924 KB
testcase_22 AC 176 ms
42,296 KB
testcase_23 AC 198 ms
42,876 KB
testcase_24 AC 179 ms
42,260 KB
testcase_25 AC 198 ms
42,812 KB
testcase_26 AC 197 ms
43,272 KB
testcase_27 AC 193 ms
43,200 KB
testcase_28 AC 186 ms
42,096 KB
testcase_29 AC 191 ms
42,908 KB
testcase_30 AC 195 ms
42,644 KB
testcase_31 AC 195 ms
42,832 KB
testcase_32 AC 191 ms
42,476 KB
testcase_33 AC 198 ms
42,920 KB
testcase_34 AC 127 ms
41,052 KB
testcase_35 AC 114 ms
39,892 KB
testcase_36 AC 129 ms
40,984 KB
testcase_37 AC 142 ms
41,144 KB
testcase_38 AC 144 ms
41,304 KB
testcase_39 AC 142 ms
41,092 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[] arr = new int[n];
		for (int i = 0; i < n; i++) {
		    arr[i] = i;
		}
		for (int i = 0; i < k; i++) {
		    int x = sc.nextInt() - 1;
		    int y = sc.nextInt() - 1;
		    int tmp = arr[x];
		    arr[x] = arr[y];
		    arr[y] = tmp;
		}
		int[] idxes = new int[n];
		for (int i = 0; i < n; i++) {
		    idxes[arr[i]] = i;
		}
		long ans = 1;
		for (int i = 0; i < n; i++) {
		    int count = 1;
		    int x = i;
		    while (i != idxes[x]) {
		        x = idxes[x];
		        count++;
		    }
		    ans = getLCM(ans, count);
		}
		System.out.println(ans);
	}
	
	static long getLCM(long x, long y) {
	    return x / getGCD(x, y) * y;
	}
	
	static long getGCD(long x, long y) {
	    if (x % y == 0) {
	        return y;
	    } else {
	        return getGCD(y, x % y);
	    }
	}
}
0