結果

問題 No.312 置換処理
ユーザー ynyn
提出日時 2015-12-05 00:28:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 434 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 74,368 KB
最終ジャッジ日時 2024-09-14 14:08:23
合計ジャッジ時間 5,171 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 101 ms
73,856 KB
testcase_02 WA -
testcase_03 AC 99 ms
73,600 KB
testcase_04 AC 97 ms
73,600 KB
testcase_05 AC 96 ms
73,344 KB
testcase_06 AC 96 ms
74,112 KB
testcase_07 AC 96 ms
74,112 KB
testcase_08 AC 94 ms
73,728 KB
testcase_09 AC 95 ms
73,216 KB
testcase_10 AC 96 ms
73,728 KB
testcase_11 AC 96 ms
73,600 KB
testcase_12 AC 96 ms
73,344 KB
testcase_13 AC 55 ms
59,520 KB
testcase_14 AC 55 ms
59,392 KB
testcase_15 AC 56 ms
59,776 KB
testcase_16 AC 55 ms
59,520 KB
testcase_17 AC 55 ms
59,648 KB
testcase_18 AC 55 ms
59,392 KB
testcase_19 AC 55 ms
59,648 KB
testcase_20 AC 54 ms
59,520 KB
testcase_21 AC 55 ms
59,648 KB
testcase_22 AC 96 ms
73,472 KB
testcase_23 AC 54 ms
59,648 KB
testcase_24 AC 95 ms
73,600 KB
testcase_25 AC 96 ms
73,216 KB
testcase_26 AC 96 ms
73,472 KB
testcase_27 AC 55 ms
59,520 KB
testcase_28 AC 97 ms
73,216 KB
testcase_29 AC 96 ms
73,728 KB
testcase_30 AC 98 ms
74,112 KB
testcase_31 AC 54 ms
59,136 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 98 ms
73,600 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 54 ms
59,776 KB
testcase_39 AC 96 ms
73,344 KB
testcase_40 AC 99 ms
73,472 KB
testcase_41 AC 97 ms
73,216 KB
testcase_42 AC 97 ms
73,344 KB
testcase_43 AC 96 ms
73,600 KB
testcase_44 AC 55 ms
59,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
nn = 10**6
num = [2]
table = [True] * (nn + 1)

if n % 4 == 0:
    print(4)
    exit()

for i in range(2, nn + 1):
    if not table[i]:
        continue
    k = i + i
    while k < nn + 1:
        table[k] = False
        k += i

    num.append(i)

flag = 0
for i in num:
    if i == 2:
        flag = 1
        continue
    if n % i == 0:
        print(i)
        exit()

if flag:
    print(n//2)
    exit()
print(n)
0