結果

問題 No.443 GCD of Permutation
ユーザー ぴろずぴろず
提出日時 2016-11-27 09:19:18
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 689 bytes
コンパイル時間 2,781 ms
コンパイル使用メモリ 74,872 KB
実行使用メモリ 63,204 KB
最終ジャッジ日時 2024-11-27 12:07:36
合計ジャッジ時間 31,097 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 848 ms
47,620 KB
testcase_01 AC 849 ms
47,612 KB
testcase_02 AC 850 ms
47,572 KB
testcase_03 AC 849 ms
48,516 KB
testcase_04 AC 850 ms
47,412 KB
testcase_05 AC 851 ms
46,540 KB
testcase_06 AC 848 ms
46,328 KB
testcase_07 AC 851 ms
47,752 KB
testcase_08 AC 850 ms
47,692 KB
testcase_09 AC 850 ms
48,660 KB
testcase_10 AC 850 ms
47,744 KB
testcase_11 AC 851 ms
47,456 KB
testcase_12 AC 849 ms
47,544 KB
testcase_13 AC 849 ms
47,436 KB
testcase_14 AC 897 ms
49,904 KB
testcase_15 AC 849 ms
49,772 KB
testcase_16 AC 853 ms
49,892 KB
testcase_17 AC 851 ms
50,052 KB
testcase_18 AC 849 ms
50,308 KB
testcase_19 AC 851 ms
49,956 KB
testcase_20 AC 854 ms
49,940 KB
testcase_21 AC 850 ms
50,432 KB
testcase_22 AC 848 ms
49,316 KB
testcase_23 AC 849 ms
49,440 KB
testcase_24 AC 847 ms
49,312 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 850 ms
49,632 KB
testcase_28 WA -
testcase_29 AC 848 ms
50,096 KB
testcase_30 AC 849 ms
49,684 KB
testcase_31 AC 856 ms
49,624 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 <= 800) {
			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