結果
| 問題 | No.537 ユーザーID |
| コンテスト | |
| ユーザー |
cleantted
|
| 提出日時 | 2017-06-30 23:16:46 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
WA
不安定
|
| 実行時間 | - |
| コード長 | 188 bytes |
| 記録 | |
| コンパイル時間 | 56 ms |
| コンパイル使用メモリ | 14,848 KB |
| 実行使用メモリ | 12,416 KB |
| 最終ジャッジ日時 | 2026-09-10 08:07:41 |
| 合計ジャッジ時間 | 3,509 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 32 |
ソースコード
N = int(input())
s = set()
for i in range(1, int(N **0.5) + 1):
if N % i == 0:
M = N // i
s.add(str(i) + str(M))
s.add(str(M) + str(i))
print(s)
print(len(s))
cleantted