結果

問題 No.1157 Many Quotients easy
ユーザー mlihua09mlihua09
提出日時 2020-09-20 14:20:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 68 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 60,972 KB
最終ジャッジ日時 2024-06-24 10:44:05
合計ジャッジ時間 2,262 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,516 KB
testcase_01 AC 43 ms
59,184 KB
testcase_02 AC 42 ms
58,684 KB
testcase_03 AC 45 ms
59,916 KB
testcase_04 AC 44 ms
58,840 KB
testcase_05 AC 42 ms
59,956 KB
testcase_06 AC 43 ms
60,016 KB
testcase_07 AC 42 ms
59,268 KB
testcase_08 AC 43 ms
60,484 KB
testcase_09 AC 43 ms
59,928 KB
testcase_10 AC 43 ms
59,296 KB
testcase_11 AC 43 ms
60,104 KB
testcase_12 AC 42 ms
59,516 KB
testcase_13 AC 46 ms
59,980 KB
testcase_14 AC 44 ms
59,620 KB
testcase_15 AC 43 ms
59,712 KB
testcase_16 AC 45 ms
59,504 KB
testcase_17 AC 46 ms
60,604 KB
testcase_18 AC 45 ms
60,972 KB
testcase_19 AC 45 ms
59,852 KB
testcase_20 AC 43 ms
59,424 KB
testcase_21 AC 38 ms
51,948 KB
testcase_22 AC 38 ms
53,004 KB
testcase_23 AC 39 ms
52,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


N = int(input())

print(len(set(N // i for i in range(1, N + 1))))
0