結果

問題 No.312 置換処理
ユーザー akitsugu777akitsugu777
提出日時 2019-08-01 14:32:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 110 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 10,600 KB
実行使用メモリ 7,936 KB
最終ジャッジ日時 2023-09-18 17:20:59
合計ジャッジ時間 4,998 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
7,732 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 154 ms
7,844 KB
testcase_06 AC 96 ms
7,740 KB
testcase_07 AC 135 ms
7,736 KB
testcase_08 AC 131 ms
7,784 KB
testcase_09 AC 67 ms
7,784 KB
testcase_10 AC 76 ms
7,864 KB
testcase_11 AC 130 ms
7,824 KB
testcase_12 AC 94 ms
7,732 KB
testcase_13 AC 143 ms
7,780 KB
testcase_14 AC 106 ms
7,884 KB
testcase_15 AC 94 ms
7,740 KB
testcase_16 AC 63 ms
7,732 KB
testcase_17 AC 117 ms
7,888 KB
testcase_18 AC 118 ms
7,824 KB
testcase_19 AC 134 ms
7,732 KB
testcase_20 AC 149 ms
7,780 KB
testcase_21 AC 153 ms
7,844 KB
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 AC 15 ms
7,904 KB
testcase_29 RE -
testcase_30 RE -
testcase_31 AC 42 ms
7,756 KB
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 AC 60 ms
7,804 KB
testcase_36 AC 16 ms
7,784 KB
testcase_37 AC 16 ms
7,920 KB
testcase_38 AC 17 ms
7,744 KB
testcase_39 AC 57 ms
7,732 KB
testcase_40 AC 23 ms
7,740 KB
testcase_41 AC 16 ms
7,868 KB
testcase_42 AC 21 ms
7,876 KB
testcase_43 AC 16 ms
7,808 KB
testcase_44 AC 16 ms
7,732 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