結果

問題 No.136 Yet Another GCD Problem
ユーザー Snark86Snark86
提出日時 2016-04-27 07:00:09
言語 Python2
(2.7.18)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 295 bytes
コンパイル時間 113 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 10,416 KB
最終ジャッジ日時 2024-10-04 16:00:18
合計ジャッジ時間 2,624 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,400 KB
testcase_01 AC 9 ms
6,400 KB
testcase_02 AC 9 ms
6,272 KB
testcase_03 AC 76 ms
8,748 KB
testcase_04 AC 118 ms
10,364 KB
testcase_05 AC 30 ms
7,424 KB
testcase_06 AC 25 ms
7,168 KB
testcase_07 AC 27 ms
7,244 KB
testcase_08 AC 54 ms
8,416 KB
testcase_09 AC 12 ms
6,528 KB
testcase_10 AC 55 ms
8,440 KB
testcase_11 AC 92 ms
9,416 KB
testcase_12 AC 10 ms
6,400 KB
testcase_13 AC 48 ms
8,108 KB
testcase_14 AC 131 ms
10,416 KB
testcase_15 AC 113 ms
10,152 KB
testcase_16 AC 101 ms
9,836 KB
testcase_17 AC 81 ms
9,320 KB
testcase_18 AC 10 ms
6,400 KB
testcase_19 AC 90 ms
9,496 KB
testcase_20 AC 64 ms
8,740 KB
testcase_21 AC 13 ms
6,528 KB
testcase_22 AC 10 ms
6,400 KB
testcase_23 AC 9 ms
6,400 KB
testcase_24 AC 9 ms
6,272 KB
testcase_25 AC 9 ms
6,400 KB
testcase_26 AC 9 ms
6,400 KB
testcase_27 AC 90 ms
9,492 KB
testcase_28 AC 63 ms
8,612 KB
testcase_29 AC 13 ms
6,528 KB
testcase_30 AC 9 ms
6,272 KB
testcase_31 AC 9 ms
6,400 KB
testcase_32 AC 9 ms
6,272 KB
testcase_33 AC 9 ms
6,400 KB
testcase_34 AC 35 ms
7,552 KB
testcase_35 AC 60 ms
8,396 KB
testcase_36 AC 23 ms
7,168 KB
testcase_37 AC 106 ms
9,864 KB
testcase_38 AC 10 ms
6,272 KB
testcase_39 AC 9 ms
6,272 KB
testcase_40 AC 9 ms
6,400 KB
testcase_41 AC 9 ms
6,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
n,k = map(int,raw_input().split())

a = [i for i in range(2,n+1)]
p = []
while a:
	if a[0] <= math.sqrt(a[-1]):
		p.append(a[0])
		a = filter(lambda x:x%a[0]!=0, a)
	else:
		p += a
		break
b=[2,1]
if n not in p:
	for i in p:
		if n%i == 0:
			s = n/i
			b = [i,s]
			break
print b[1]
0