結果
| 問題 | No.537 ユーザーID |
| コンテスト | |
| ユーザー |
ID 21712
|
| 提出日時 | 2025-01-13 00:27:09 |
| 言語 | Go (1.26.1) |
| 結果 |
AC
|
| 実行時間 | 6 ms / 2,000 ms |
| コード長 | 238 bytes |
| 記録 | |
| コンパイル時間 | 13,370 ms |
| コンパイル使用メモリ | 278,156 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-06-12 09:41:06 |
| 合計ジャッジ時間 | 15,821 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 32 |
ソースコード
package main
import . "fmt"
func main() {
var n int64
Scan(&n)
t:=map[string]bool{}
for i:=int64(1); i*i<=n; i++ {
if n%i != 0 {
continue
}
t[Sprintf("%d%d",i,n/i)]=true
t[Sprintf("%d%d",n/i,i)]=true
}
Println(len(t))
}
ID 21712