結果

問題 No.312 置換処理
ユーザー akitsugu777akitsugu777
提出日時 2019-08-01 14:32:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 110 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-05 07:28:19
合計ジャッジ時間 6,020 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 154 ms
10,752 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 198 ms
10,752 KB
testcase_06 AC 129 ms
10,624 KB
testcase_07 AC 177 ms
10,496 KB
testcase_08 AC 169 ms
10,752 KB
testcase_09 AC 94 ms
10,496 KB
testcase_10 AC 105 ms
10,624 KB
testcase_11 AC 169 ms
10,752 KB
testcase_12 AC 125 ms
10,624 KB
testcase_13 AC 189 ms
10,624 KB
testcase_14 AC 138 ms
10,624 KB
testcase_15 AC 124 ms
10,624 KB
testcase_16 AC 89 ms
10,496 KB
testcase_17 AC 154 ms
10,624 KB
testcase_18 AC 155 ms
10,624 KB
testcase_19 AC 173 ms
10,496 KB
testcase_20 AC 190 ms
10,752 KB
testcase_21 AC 192 ms
10,624 KB
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 AC 29 ms
10,624 KB
testcase_29 RE -
testcase_30 RE -
testcase_31 AC 60 ms
10,496 KB
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 AC 83 ms
10,752 KB
testcase_36 AC 30 ms
10,496 KB
testcase_37 AC 29 ms
10,752 KB
testcase_38 AC 31 ms
10,752 KB
testcase_39 AC 80 ms
10,496 KB
testcase_40 AC 38 ms
10,496 KB
testcase_41 AC 30 ms
10,624 KB
testcase_42 AC 35 ms
10,496 KB
testcase_43 AC 30 ms
10,496 KB
testcase_44 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

l = []
for i in range(3, int(n**0.5)+1):
    if n % i == 0:
        l.append(i)

print(l[0])
0