結果

問題 No.1157 Many Quotients easy
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-10-25 09:41:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 92 bytes
コンパイル時間 547 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 65,428 KB
最終ジャッジ日時 2024-04-14 03:31:49
合計ジャッジ時間 3,036 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
52,740 KB
testcase_01 AC 55 ms
60,500 KB
testcase_02 AC 53 ms
59,596 KB
testcase_03 AC 61 ms
63,620 KB
testcase_04 AC 60 ms
63,172 KB
testcase_05 AC 52 ms
58,976 KB
testcase_06 AC 54 ms
61,328 KB
testcase_07 AC 51 ms
57,912 KB
testcase_08 AC 54 ms
61,456 KB
testcase_09 AC 54 ms
61,628 KB
testcase_10 AC 52 ms
58,708 KB
testcase_11 AC 51 ms
59,932 KB
testcase_12 AC 53 ms
59,884 KB
testcase_13 AC 59 ms
65,428 KB
testcase_14 AC 56 ms
63,772 KB
testcase_15 AC 52 ms
59,736 KB
testcase_16 AC 57 ms
64,828 KB
testcase_17 AC 61 ms
65,156 KB
testcase_18 AC 59 ms
62,636 KB
testcase_19 AC 54 ms
63,168 KB
testcase_20 AC 53 ms
61,868 KB
testcase_21 AC 47 ms
52,076 KB
testcase_22 AC 45 ms
52,896 KB
testcase_23 AC 46 ms
52,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
num = []
for i in range(1,n+1):
    num.append(n // i)
print(len(set(num)))
0