結果

問題 No.1157 Many Quotients easy
ユーザー zyxwzyxw
提出日時 2021-02-02 21:55:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 93 bytes
コンパイル時間 380 ms
コンパイル使用メモリ 86,980 KB
実行使用メモリ 81,876 KB
最終ジャッジ日時 2023-09-12 11:25:48
合計ジャッジ時間 3,924 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 79 ms
77,516 KB
testcase_02 AC 75 ms
75,924 KB
testcase_03 AC 83 ms
80,012 KB
testcase_04 AC 78 ms
79,108 KB
testcase_05 AC 74 ms
75,872 KB
testcase_06 AC 74 ms
77,468 KB
testcase_07 AC 72 ms
75,600 KB
testcase_08 AC 75 ms
77,996 KB
testcase_09 AC 75 ms
77,232 KB
testcase_10 AC 72 ms
75,668 KB
testcase_11 AC 75 ms
76,108 KB
testcase_12 AC 76 ms
76,728 KB
testcase_13 AC 79 ms
80,804 KB
testcase_14 AC 78 ms
80,432 KB
testcase_15 AC 76 ms
76,332 KB
testcase_16 AC 79 ms
80,340 KB
testcase_17 AC 81 ms
81,876 KB
testcase_18 AC 77 ms
79,600 KB
testcase_19 AC 77 ms
78,568 KB
testcase_20 AC 78 ms
77,552 KB
testcase_21 AC 73 ms
71,040 KB
testcase_22 AC 73 ms
71,308 KB
testcase_23 AC 73 ms
71,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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