結果

問題 No.101 ぐるぐる!あみだくじ!
ユーザー tentententen
提出日時 2021-01-20 09:09:25
言語 Java
(openjdk 23)
結果
AC  
実行時間 216 ms / 5,000 ms
コード長 869 bytes
コンパイル時間 2,792 ms
コンパイル使用メモリ 76,860 KB
実行使用メモリ 43,416 KB
最終ジャッジ日時 2024-12-21 16:10:05
合計ジャッジ時間 11,887 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
40,896 KB
testcase_01 AC 197 ms
43,196 KB
testcase_02 AC 216 ms
43,416 KB
testcase_03 AC 150 ms
41,404 KB
testcase_04 AC 145 ms
41,352 KB
testcase_05 AC 204 ms
43,128 KB
testcase_06 AC 147 ms
41,172 KB
testcase_07 AC 193 ms
42,516 KB
testcase_08 AC 199 ms
42,060 KB
testcase_09 AC 197 ms
42,296 KB
testcase_10 AC 201 ms
42,352 KB
testcase_11 AC 200 ms
42,256 KB
testcase_12 AC 205 ms
42,700 KB
testcase_13 AC 209 ms
42,940 KB
testcase_14 AC 194 ms
42,480 KB
testcase_15 AC 208 ms
42,824 KB
testcase_16 AC 203 ms
43,176 KB
testcase_17 AC 208 ms
42,772 KB
testcase_18 AC 201 ms
42,312 KB
testcase_19 AC 202 ms
42,592 KB
testcase_20 AC 197 ms
42,332 KB
testcase_21 AC 199 ms
42,640 KB
testcase_22 AC 196 ms
42,296 KB
testcase_23 AC 208 ms
42,888 KB
testcase_24 AC 195 ms
42,000 KB
testcase_25 AC 207 ms
42,748 KB
testcase_26 AC 209 ms
43,244 KB
testcase_27 AC 215 ms
43,256 KB
testcase_28 AC 194 ms
42,264 KB
testcase_29 AC 210 ms
43,144 KB
testcase_30 AC 206 ms
42,864 KB
testcase_31 AC 203 ms
43,076 KB
testcase_32 AC 208 ms
42,600 KB
testcase_33 AC 214 ms
43,344 KB
testcase_34 AC 130 ms
39,984 KB
testcase_35 AC 127 ms
40,128 KB
testcase_36 AC 139 ms
40,936 KB
testcase_37 AC 151 ms
41,484 KB
testcase_38 AC 151 ms
41,316 KB
testcase_39 AC 147 ms
41,248 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[] places = new int[n];
		for (int i = 0; i < n; i++) {
		    places[i] = i;
		}
		int k = sc.nextInt();
		for (int i = 0; i < k; i++) {
		    int x = sc.nextInt();
		    sc.nextInt();
		    int tmp = places[x];
		    places[x] = places[x - 1];
		    places[x - 1] = tmp;
		}
		long ans = 1;
		for (int i = 0; i < n; i++) {
		    int count = 1;
		    int idx = i;
		    while ((idx = places[idx]) != i) {
		        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