結果

問題 No.414 衝動
ユーザー 💕💖💞💕💖💞
提出日時 2016-09-10 00:11:24
言語 Python2
(2.7.18)
結果
AC  
実行時間 325 ms / 1,000 ms
コード長 411 bytes
コンパイル時間 557 ms
コンパイル使用メモリ 6,820 KB
実行使用メモリ 16,512 KB
最終ジャッジ日時 2024-11-15 09:09:23
合計ジャッジ時間 5,385 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 325 ms
16,256 KB
testcase_01 AC 307 ms
16,384 KB
testcase_02 AC 319 ms
16,384 KB
testcase_03 AC 316 ms
16,384 KB
testcase_04 AC 321 ms
16,512 KB
testcase_05 AC 316 ms
16,512 KB
testcase_06 AC 320 ms
16,384 KB
testcase_07 AC 319 ms
16,512 KB
testcase_08 AC 318 ms
16,384 KB
testcase_09 AC 315 ms
16,384 KB
testcase_10 AC 313 ms
16,384 KB
testcase_11 AC 320 ms
16,512 KB
testcase_12 AC 314 ms
16,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def prime_table(n):
  list = [True for _ in xrange(n + 1)]
  i = 2
  while i * i <= n:
    if list[i]:
      j = i + i
      while j <= n:
        list[j] = False
        j += i
    i += 1

  table = [i for i in xrange(n + 1) if list[i] and i >= 2]
  return table
import sys
b = prime_table(10**6)

M = int(raw_input())
for prime in b:
  if M%prime == 0:
     print prime, M/prime
     sys.exit(0)

print "1", M
0