結果

問題 No.443 GCD of Permutation
ユーザー ぴろずぴろず
提出日時 2016-11-27 09:18:56
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 689 bytes
コンパイル時間 2,463 ms
コンパイル使用メモリ 75,140 KB
実行使用メモリ 51,524 KB
最終ジャッジ日時 2024-05-05 14:09:25
合計ジャッジ時間 34,278 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 947 ms
47,644 KB
testcase_01 AC 945 ms
47,884 KB
testcase_02 AC 946 ms
47,716 KB
testcase_03 AC 948 ms
48,036 KB
testcase_04 AC 945 ms
47,656 KB
testcase_05 AC 945 ms
46,424 KB
testcase_06 AC 945 ms
46,428 KB
testcase_07 AC 947 ms
47,320 KB
testcase_08 AC 947 ms
47,760 KB
testcase_09 AC 950 ms
48,296 KB
testcase_10 AC 945 ms
47,844 KB
testcase_11 AC 945 ms
47,324 KB
testcase_12 AC 946 ms
47,736 KB
testcase_13 AC 950 ms
47,700 KB
testcase_14 AC 994 ms
50,292 KB
testcase_15 AC 946 ms
49,920 KB
testcase_16 AC 947 ms
50,232 KB
testcase_17 AC 945 ms
49,988 KB
testcase_18 AC 947 ms
50,064 KB
testcase_19 AC 946 ms
49,896 KB
testcase_20 AC 946 ms
49,736 KB
testcase_21 AC 945 ms
49,912 KB
testcase_22 AC 946 ms
49,240 KB
testcase_23 AC 947 ms
49,244 KB
testcase_24 AC 945 ms
49,200 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 946 ms
50,124 KB
testcase_28 WA -
testcase_29 AC 949 ms
49,988 KB
testcase_30 AC 946 ms
49,884 KB
testcase_31 AC 947 ms
50,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no443;

import java.math.BigInteger;
import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		long stime = System.nanoTime();
		Scanner sc = new Scanner(System.in);
		char[] s = sc.next().toCharArray();
		int n = s.length;
		BigInteger gcd = new BigInteger(String.valueOf(s));
		while((System.nanoTime() - stime) / 1000000 <= 900) {
			for(int i=0;i<n-1;i++) {
				int j = randInt(i,n-1);
				char temp = s[i];
				s[i] = s[j];
				s[j] = temp;
			}
			gcd = gcd.gcd(new BigInteger(String.valueOf(s)));
		}
		System.out.println(gcd);
	}

	public static int randInt(int min,int max) {
		return (int) (Math.random() * (max - min + 1)) + min;
	}

}
0