結果
| 問題 | No.537 ユーザーID |
| コンテスト | |
| ユーザー |
Konton7
|
| 提出日時 | 2020-03-08 00:37:53 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
WA
不安定
|
| 実行時間 | - |
| コード長 | 206 bytes |
| 記録 | |
| コンパイル時間 | 58 ms |
| コンパイル使用メモリ | 15,104 KB |
| 実行使用メモリ | 11,264 KB |
| 最終ジャッジ日時 | 2026-09-18 10:57:51 |
| 合計ジャッジ時間 | 3,612 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 24 WA * 8 |
ソースコード
ans = 0
n = int(input())
for i in range(1, int((n+1)**0.5+1)):
if n % i == 0:
s = str(i) + str(n // i)
if s == s[::-1]:
ans += 1
else:
ans += 2
print(ans)
Konton7