結果
| 問題 | No.537 ユーザーID |
| コンテスト | |
| ユーザー |
Ikazuchis_diary
|
| 提出日時 | 2017-07-04 21:02:08 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 109 ms / 2,000 ms |
| + 484µs | |
| コード長 | 200 bytes |
| 記録 | |
| コンパイル時間 | 54 ms |
| コンパイル使用メモリ | 14,720 KB |
| 実行使用メモリ | 12,160 KB |
| 最終ジャッジ日時 | 2026-09-10 17:23:59 |
| 合計ジャッジ時間 | 3,578 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 32 |
ソースコード
import math
N = int(input())
ans = set()
for i in range(1, math.ceil(N ** 0.5) + 1):
if N % i == 0:
ans.add(str(i) + str(N // i))
ans.add(str(N // i) + str(i))
print(len(ans))
Ikazuchis_diary