結果
| 問題 |
No.537 ユーザーID
|
| コンテスト | |
| ユーザー |
nshinya
|
| 提出日時 | 2017-07-01 01:12:09 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 80 bytes |
| コンパイル時間 | 83 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 17,312 KB |
| 最終ジャッジ日時 | 2024-10-04 23:17:08 |
| 合計ジャッジ時間 | 4,169 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 6 WA * 9 TLE * 1 -- * 16 |
ソースコード
n = int(input())
c = 0
for i in range(1,n+1):
if n%i == 0:
c += 1
print(c)
nshinya