結果

問題 No.443 GCD of Permutation
ユーザー hermione17hermione17
提出日時 2016-11-12 01:02:17
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,184 bytes
コンパイル時間 3,752 ms
コンパイル使用メモリ 77,724 KB
実行使用メモリ 54,372 KB
最終ジャッジ日時 2024-05-04 04:00:11
合計ジャッジ時間 9,120 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,036 KB
testcase_01 AC 132 ms
53,744 KB
testcase_02 AC 131 ms
53,944 KB
testcase_03 AC 129 ms
53,988 KB
testcase_04 AC 129 ms
53,724 KB
testcase_05 AC 131 ms
53,884 KB
testcase_06 AC 132 ms
54,120 KB
testcase_07 AC 133 ms
54,132 KB
testcase_08 AC 132 ms
53,940 KB
testcase_09 AC 130 ms
53,736 KB
testcase_10 AC 129 ms
53,692 KB
testcase_11 WA -
testcase_12 AC 131 ms
54,012 KB
testcase_13 AC 128 ms
53,972 KB
testcase_14 AC 148 ms
54,236 KB
testcase_15 AC 146 ms
54,372 KB
testcase_16 AC 134 ms
54,180 KB
testcase_17 AC 136 ms
53,952 KB
testcase_18 AC 146 ms
54,124 KB
testcase_19 AC 138 ms
54,076 KB
testcase_20 AC 148 ms
54,076 KB
testcase_21 AC 144 ms
54,100 KB
testcase_22 WA -
testcase_23 AC 131 ms
54,088 KB
testcase_24 WA -
testcase_25 AC 154 ms
53,816 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 148 ms
54,184 KB
testcase_29 AC 146 ms
53,888 KB
testcase_30 AC 149 ms
53,968 KB
testcase_31 AC 146 ms
53,948 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