結果

問題 No.1157 Many Quotients easy
ユーザー zyxwzyxw
提出日時 2021-02-02 21:55:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 95 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 64,448 KB
最終ジャッジ日時 2024-06-29 23:55:11
合計ジャッジ時間 1,918 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,864 KB
testcase_01 AC 44 ms
60,492 KB
testcase_02 AC 40 ms
58,948 KB
testcase_03 AC 45 ms
63,060 KB
testcase_04 AC 43 ms
62,180 KB
testcase_05 AC 40 ms
58,672 KB
testcase_06 AC 42 ms
60,444 KB
testcase_07 AC 39 ms
57,528 KB
testcase_08 AC 43 ms
60,956 KB
testcase_09 AC 42 ms
61,700 KB
testcase_10 AC 40 ms
58,128 KB
testcase_11 AC 40 ms
59,376 KB
testcase_12 AC 42 ms
59,608 KB
testcase_13 AC 46 ms
64,432 KB
testcase_14 AC 44 ms
63,668 KB
testcase_15 AC 40 ms
60,188 KB
testcase_16 AC 45 ms
63,840 KB
testcase_17 AC 47 ms
64,448 KB
testcase_18 AC 44 ms
62,924 KB
testcase_19 AC 43 ms
62,548 KB
testcase_20 AC 42 ms
62,056 KB
testcase_21 AC 36 ms
51,416 KB
testcase_22 AC 36 ms
52,484 KB
testcase_23 AC 36 ms
52,548 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