結果

問題 No.1157 Many Quotients easy
ユーザー zyxwzyxw
提出日時 2021-02-02 21:55:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 95 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 87,048 KB
実行使用メモリ 81,472 KB
最終ジャッジ日時 2023-09-12 11:25:52
合計ジャッジ時間 3,229 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,244 KB
testcase_01 AC 79 ms
77,360 KB
testcase_02 AC 77 ms
75,760 KB
testcase_03 AC 80 ms
79,688 KB
testcase_04 AC 78 ms
79,028 KB
testcase_05 AC 75 ms
75,524 KB
testcase_06 AC 76 ms
77,324 KB
testcase_07 AC 74 ms
75,616 KB
testcase_08 AC 78 ms
77,904 KB
testcase_09 AC 77 ms
77,120 KB
testcase_10 AC 74 ms
75,896 KB
testcase_11 AC 75 ms
75,924 KB
testcase_12 AC 76 ms
76,716 KB
testcase_13 AC 79 ms
80,996 KB
testcase_14 AC 78 ms
79,976 KB
testcase_15 AC 75 ms
76,100 KB
testcase_16 AC 79 ms
80,160 KB
testcase_17 AC 81 ms
81,472 KB
testcase_18 AC 77 ms
79,668 KB
testcase_19 AC 77 ms
78,340 KB
testcase_20 AC 77 ms
77,520 KB
testcase_21 AC 72 ms
71,216 KB
testcase_22 AC 71 ms
71,072 KB
testcase_23 AC 70 ms
71,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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