結果

問題 No.1157 Many Quotients easy
ユーザー brthyyjpbrthyyjp
提出日時 2020-12-13 20:27:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 81 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 58,788 KB
最終ジャッジ日時 2024-09-19 23:53:02
合計ジャッジ時間 2,092 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,172 KB
testcase_01 AC 41 ms
58,320 KB
testcase_02 AC 37 ms
57,540 KB
testcase_03 AC 39 ms
57,720 KB
testcase_04 AC 40 ms
58,628 KB
testcase_05 AC 38 ms
57,712 KB
testcase_06 AC 38 ms
58,292 KB
testcase_07 AC 38 ms
57,676 KB
testcase_08 AC 41 ms
57,912 KB
testcase_09 AC 39 ms
57,684 KB
testcase_10 AC 37 ms
57,648 KB
testcase_11 AC 40 ms
58,248 KB
testcase_12 AC 38 ms
58,548 KB
testcase_13 AC 41 ms
58,788 KB
testcase_14 AC 41 ms
57,784 KB
testcase_15 AC 39 ms
57,992 KB
testcase_16 AC 40 ms
58,616 KB
testcase_17 AC 39 ms
58,720 KB
testcase_18 AC 39 ms
57,908 KB
testcase_19 AC 39 ms
58,408 KB
testcase_20 AC 38 ms
57,496 KB
testcase_21 AC 34 ms
52,648 KB
testcase_22 AC 34 ms
52,744 KB
testcase_23 AC 35 ms
52,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
S = set()
for i in range(1, n+1):
    S.add(n//i)
print(len(S))
0