結果

問題 No.101 ぐるぐる!あみだくじ!
ユーザー scachescache
提出日時 2014-12-12 00:15:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 190 ms / 5,000 ms
コード長 1,144 bytes
コンパイル時間 3,583 ms
コンパイル使用メモリ 77,652 KB
実行使用メモリ 43,744 KB
最終ジャッジ日時 2024-06-11 20:52:00
合計ジャッジ時間 10,389 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
41,344 KB
testcase_01 AC 172 ms
43,332 KB
testcase_02 AC 165 ms
43,228 KB
testcase_03 AC 136 ms
41,184 KB
testcase_04 AC 123 ms
41,376 KB
testcase_05 AC 173 ms
43,360 KB
testcase_06 AC 134 ms
41,692 KB
testcase_07 AC 164 ms
42,656 KB
testcase_08 AC 168 ms
42,632 KB
testcase_09 AC 157 ms
42,504 KB
testcase_10 AC 158 ms
42,520 KB
testcase_11 AC 165 ms
41,992 KB
testcase_12 AC 169 ms
42,904 KB
testcase_13 AC 174 ms
43,156 KB
testcase_14 AC 168 ms
42,308 KB
testcase_15 AC 168 ms
42,560 KB
testcase_16 AC 185 ms
43,004 KB
testcase_17 AC 175 ms
42,860 KB
testcase_18 AC 168 ms
42,172 KB
testcase_19 AC 163 ms
42,848 KB
testcase_20 AC 170 ms
42,368 KB
testcase_21 AC 186 ms
42,760 KB
testcase_22 AC 171 ms
42,204 KB
testcase_23 AC 185 ms
43,180 KB
testcase_24 AC 168 ms
42,456 KB
testcase_25 AC 189 ms
43,568 KB
testcase_26 AC 185 ms
43,228 KB
testcase_27 AC 186 ms
43,744 KB
testcase_28 AC 172 ms
42,408 KB
testcase_29 AC 182 ms
43,244 KB
testcase_30 AC 175 ms
43,336 KB
testcase_31 AC 190 ms
43,536 KB
testcase_32 AC 184 ms
42,812 KB
testcase_33 AC 182 ms
43,344 KB
testcase_34 AC 123 ms
41,176 KB
testcase_35 AC 120 ms
41,280 KB
testcase_36 AC 121 ms
41,156 KB
testcase_37 AC 135 ms
41,404 KB
testcase_38 AC 134 ms
41,488 KB
testcase_39 AC 131 ms
41,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


import java.util.Scanner;

public class Main0100 {
	public static void main(String[] args) {
		Main0100 p = new Main0100();
	}

	public Main0100() {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int k = sc.nextInt();
		int[] x = new int[k];
		int[] y = new int[k];
		for (int i = 0; i < x.length; i++){
			x[i] = sc.nextInt()-1;
			y[i] = sc.nextInt()-1;
		}
		solve(n, x, y);
	}

	public void solve(int n, int[] x, int[] y) {
		int[] a = new int[n];
		int[] b = new int[n];
		for(int i=0;i<n;i++){
			a[i] = i;
			b[i] = i;
		}
		
		for(int i=0;i<x.length;i++){
			int w = a[x[i]];
			a[x[i]] = a[y[i]];
			a[y[i]] = w;
		}
		
		boolean[] isVisit = new boolean[n];
		int res = 1;
		for(int i=0;i<n;i++){
			if(isVisit[i])
				continue;
			int c = 1;
			int cur = i;
			while(a[cur] != i){
				isVisit[cur] = true;
				c++;
				cur = a[cur];
			}
			res = lcm(res, c);
		}
		
		System.out.println(res);
	}
	
	private int lcm(int a, int b){
		return a/gcd(a, b) * b;
	}

	private int gcd(int a, int b) {
		if(b==0)
			return a;
		return gcd(b, a%b);
	}
	

}
0