結果
問題 | No.339 何人が回答したのか |
ユーザー | 💕💖💞 |
提出日時 | 2016-09-11 10:26:11 |
言語 | Go (1.23.4) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 696 bytes |
コンパイル時間 | 11,785 ms |
コンパイル使用メモリ | 226,500 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-17 00:18:37 |
合計ジャッジ時間 | 13,666 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 61 |
ソースコード
package main import ( "bufio" "fmt" "os" "strconv" _ "strings" _ "math" "sort" ) func main() { scanner := bufio.NewScanner(os.Stdin) holder := []int{} th := 0 Max := 0 for scanner.Scan() { x, _ := strconv.Atoi(scanner.Text()) holder = append(holder, x) if th == 0 { Max = x } if th == Max { break } th += 1 } nums := holder[1:] sort.Ints(nums) for prime := 100; prime >= 2; prime-- { acc := 0 for _, n := range nums { acc += n % prime } if acc == 0 { for i, _ := range nums { nums[i] /= prime } } } acc := 0 for _, val := range nums { acc += val } fmt.Println(acc) }