結果
| 問題 |
No.537 ユーザーID
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-07-31 10:07:36 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 222 bytes |
| コンパイル時間 | 167 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 17,576 KB |
| 最終ジャッジ日時 | 2024-10-11 00:06:41 |
| 合計ジャッジ時間 | 4,426 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 14 WA * 1 TLE * 1 -- * 16 |
ソースコード
# Here your code !
from collections import deque
n = int(input())
A = deque()
for i in range(1,n//2+1):
if n % i == 0:
a,b = str(n//i),str(i)
A.append(a+b)
A.append(b+a)
A = set(A)
print(len(A))