結果

問題 No.443 GCD of Permutation
ユーザー hermione17hermione17
提出日時 2016-11-12 01:02:17
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 1,184 bytes
コンパイル時間 3,366 ms
コンパイル使用メモリ 77,440 KB
実行使用メモリ 54,448 KB
最終ジャッジ日時 2024-11-25 10:45:01
合計ジャッジ時間 8,790 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
53,844 KB
testcase_01 AC 123 ms
53,792 KB
testcase_02 AC 122 ms
54,124 KB
testcase_03 AC 127 ms
54,064 KB
testcase_04 AC 127 ms
54,024 KB
testcase_05 AC 126 ms
54,080 KB
testcase_06 AC 127 ms
53,972 KB
testcase_07 AC 127 ms
54,024 KB
testcase_08 AC 126 ms
54,196 KB
testcase_09 AC 126 ms
54,028 KB
testcase_10 AC 126 ms
54,176 KB
testcase_11 WA -
testcase_12 AC 127 ms
54,104 KB
testcase_13 AC 129 ms
53,696 KB
testcase_14 AC 147 ms
53,968 KB
testcase_15 AC 151 ms
53,952 KB
testcase_16 AC 132 ms
54,060 KB
testcase_17 AC 136 ms
53,808 KB
testcase_18 AC 145 ms
53,752 KB
testcase_19 AC 133 ms
53,956 KB
testcase_20 AC 142 ms
53,796 KB
testcase_21 AC 140 ms
53,740 KB
testcase_22 WA -
testcase_23 AC 126 ms
53,920 KB
testcase_24 WA -
testcase_25 AC 146 ms
54,212 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 147 ms
54,124 KB
testcase_29 AC 145 ms
54,188 KB
testcase_30 AC 145 ms
54,056 KB
testcase_31 AC 146 ms
54,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintStream;
import java.util.Scanner;


public class Y443 {
	Scanner in = new Scanner(System.in);
	PrintStream out = new PrintStream(System.out);

	Y443() throws Exception {
		String s = in.next();
		
		boolean[] flag = new boolean[10];
		
		if (isRepetitive(s)) {
			out.println(s);
			return;
		}
		
		for (int i = 0; i < s.length(); i++) {
			flag[s.charAt(i) - '0'] = true;
		}
		
		long g = 0;
		
		for (int i = 0; i < 10; i++) {
			for (int j = i + 1; j < 10; j++) {
				if (flag[i] && flag[j]) {
					g = gcd(g, 9 * (j - i));
				}
			}
		}
		
		for (int i = (int)g; i>0; i--) {
			if (g % i == 0 && divisible(s, i)) {
				out.println(i);
				return;
			}
		}
	}
	
	boolean isRepetitive(String s) {
		for (int i = 0; i < s.length(); i++) {
			if (s.charAt(0) != s.charAt(i)) {
				return false;
			}
		}
		return true;
	}

	boolean divisible(String s, int x) {
		int r = 0;
		for (int i = 0; i < s.length(); i++) {
			r = (r + s.charAt(i) - '0') % x;
		}
		return r == 0;
	}
	
	long gcd(long x, long y) {
		while (y > 0) {
			x %= y;
			long t = x; x = y; y = t;
		}
		return x;
	}

	public static void main(String argv[]) throws Exception {
		new Y443();
	}
}
0