結果

問題 No.537 ユーザーID
ユーザー ID 21712
提出日時 2025-01-13 00:22:44
言語 Go
(1.23.4)
結果
WA  
実行時間 -
コード長 222 bytes
コンパイル時間 23,836 ms
コンパイル使用メモリ 235,392 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2025-01-13 00:23:14
合計ジャッジ時間 26,175 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 19 WA * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

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[Sprint(i,n/i)]=true
		t[Sprint(n/i,i)]=true
	}
	Println(len(t))
}
0