結果

問題 No.136 Yet Another GCD Problem
ユーザー spaciaspacia
提出日時 2016-01-20 12:27:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 5,000 ms
コード長 533 bytes
コンパイル時間 2,083 ms
コンパイル使用メモリ 75,072 KB
実行使用メモリ 37,212 KB
最終ジャッジ日時 2024-09-21 14:44:49
合計ジャッジ時間 5,907 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,848 KB
testcase_01 AC 53 ms
36,556 KB
testcase_02 AC 52 ms
36,860 KB
testcase_03 AC 52 ms
36,996 KB
testcase_04 AC 55 ms
37,064 KB
testcase_05 AC 53 ms
37,016 KB
testcase_06 AC 52 ms
37,084 KB
testcase_07 AC 51 ms
36,888 KB
testcase_08 AC 52 ms
36,912 KB
testcase_09 AC 53 ms
36,664 KB
testcase_10 AC 53 ms
36,572 KB
testcase_11 AC 52 ms
36,848 KB
testcase_12 AC 54 ms
37,072 KB
testcase_13 AC 53 ms
36,784 KB
testcase_14 AC 53 ms
36,956 KB
testcase_15 AC 54 ms
36,876 KB
testcase_16 AC 53 ms
37,080 KB
testcase_17 AC 54 ms
37,084 KB
testcase_18 AC 53 ms
37,084 KB
testcase_19 AC 52 ms
37,072 KB
testcase_20 AC 52 ms
36,988 KB
testcase_21 AC 53 ms
37,212 KB
testcase_22 AC 53 ms
36,860 KB
testcase_23 AC 52 ms
37,092 KB
testcase_24 AC 53 ms
36,984 KB
testcase_25 AC 54 ms
36,564 KB
testcase_26 AC 54 ms
36,572 KB
testcase_27 AC 52 ms
36,888 KB
testcase_28 AC 53 ms
36,928 KB
testcase_29 AC 53 ms
36,988 KB
testcase_30 AC 53 ms
36,576 KB
testcase_31 AC 52 ms
36,576 KB
testcase_32 AC 52 ms
36,756 KB
testcase_33 AC 52 ms
36,576 KB
testcase_34 AC 54 ms
37,116 KB
testcase_35 AC 53 ms
36,968 KB
testcase_36 AC 54 ms
36,780 KB
testcase_37 AC 53 ms
36,544 KB
testcase_38 AC 55 ms
37,056 KB
testcase_39 AC 52 ms
37,096 KB
testcase_40 AC 51 ms
36,944 KB
testcase_41 AC 54 ms
36,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.math.*;

class Main {
	
	public static void out (Object o) {
		System.out.println(o);
	}
	
	public static int solve (int n) {
		if (n % 2 == 0) return n / 2;
		for (int i = 3; i * i <= n; i += 2)
			if (n % i == 0) return n / i;
		return 1;
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		String[] line = br.readLine().split(" ");
		
		out(solve(Integer.parseInt(line[0])));
	}
}
0