結果
問題 |
No.1157 Many Quotients easy
|
ユーザー |
|
提出日時 | 2021-12-06 13:51:15 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 139 bytes |
コンパイル時間 | 81 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,520 KB |
最終ジャッジ日時 | 2024-07-07 08:59:58 |
合計ジャッジ時間 | 2,127 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 2 |
other | WA * 22 |
ソースコード
N = int(input()) A = [0] * (N+1) for i in range(1,N+1): A[N // i] += 1 count = 0 for i in A: if A: count += 1 print(count)