結果

問題 No.312 置換処理
ユーザー flippergoflippergo
提出日時 2024-12-29 08:55:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 215 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 59,372 KB
最終ジャッジ日時 2024-12-29 08:55:34
合計ジャッジ時間 3,841 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
58,912 KB
testcase_01 AC 51 ms
59,372 KB
testcase_02 AC 56 ms
57,800 KB
testcase_03 AC 56 ms
58,308 KB
testcase_04 AC 36 ms
53,228 KB
testcase_05 AC 56 ms
57,948 KB
testcase_06 AC 50 ms
58,432 KB
testcase_07 AC 59 ms
58,104 KB
testcase_08 AC 54 ms
58,892 KB
testcase_09 AC 48 ms
58,536 KB
testcase_10 AC 48 ms
58,012 KB
testcase_11 AC 54 ms
58,640 KB
testcase_12 AC 50 ms
58,012 KB
testcase_13 AC 56 ms
57,892 KB
testcase_14 AC 51 ms
58,288 KB
testcase_15 AC 50 ms
58,064 KB
testcase_16 AC 46 ms
59,308 KB
testcase_17 AC 51 ms
59,172 KB
testcase_18 AC 53 ms
59,312 KB
testcase_19 AC 54 ms
58,912 KB
testcase_20 AC 55 ms
58,308 KB
testcase_21 AC 55 ms
57,836 KB
testcase_22 AC 39 ms
52,688 KB
testcase_23 AC 38 ms
53,292 KB
testcase_24 AC 36 ms
52,904 KB
testcase_25 AC 37 ms
52,032 KB
testcase_26 AC 41 ms
51,820 KB
testcase_27 AC 38 ms
52,068 KB
testcase_28 AC 37 ms
52,204 KB
testcase_29 AC 38 ms
52,020 KB
testcase_30 AC 41 ms
58,492 KB
testcase_31 AC 45 ms
58,712 KB
testcase_32 AC 43 ms
59,048 KB
testcase_33 AC 47 ms
58,040 KB
testcase_34 AC 46 ms
58,040 KB
testcase_35 AC 46 ms
59,092 KB
testcase_36 AC 37 ms
52,800 KB
testcase_37 AC 37 ms
52,948 KB
testcase_38 AC 38 ms
53,048 KB
testcase_39 AC 45 ms
58,540 KB
testcase_40 AC 41 ms
57,920 KB
testcase_41 AC 38 ms
52,952 KB
testcase_42 AC 41 ms
58,792 KB
testcase_43 AC 36 ms
52,636 KB
testcase_44 AC 38 ms
52,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = set()
for i in range(1,N+1):
    if i*i>N:
        break
    if N%i==0:
        A.add(i)
        A.add(N//i)
A = sorted(list(A))
for a in A:
    if a not in [1,2]:
        print(a)
        break
0