結果

問題 No.1343 Dividing Digit
ユーザー ID 21712ID 21712
提出日時 2024-12-16 21:11:15
言語 Go
(1.22.1)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 295 bytes
コンパイル時間 12,081 ms
コンパイル使用メモリ 225,416 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-16 21:11:36
合計ジャッジ時間 14,238 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 43 ms
5,248 KB
testcase_04 AC 6 ms
5,248 KB
testcase_05 AC 14 ms
5,248 KB
testcase_06 AC 9 ms
5,248 KB
testcase_07 AC 18 ms
5,248 KB
testcase_08 AC 35 ms
5,248 KB
testcase_09 AC 38 ms
5,248 KB
testcase_10 AC 7 ms
5,248 KB
testcase_11 AC 17 ms
5,248 KB
testcase_12 AC 31 ms
5,248 KB
testcase_13 AC 29 ms
5,248 KB
testcase_14 AC 7 ms
5,248 KB
testcase_15 AC 16 ms
5,248 KB
testcase_16 AC 8 ms
5,248 KB
testcase_17 AC 38 ms
5,248 KB
testcase_18 AC 42 ms
5,248 KB
testcase_19 AC 28 ms
5,248 KB
testcase_20 AC 20 ms
5,248 KB
testcase_21 AC 36 ms
5,248 KB
testcase_22 AC 36 ms
5,248 KB
testcase_23 AC 45 ms
5,248 KB
testcase_24 AC 63 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"
import . "os"
import bf "bufio"

func main() {
	rd:=bf.NewReader(Stdin)
	var n int
	var k int64
	Fscan(rd,&n,&k)
	a:=make([]int64,n)
	var m int64
	for i:=range a {
		Fscan(rd,&a[i])
		m+=a[i]
	}
	var x int64
	for _,v:=range a {
		x=x*k%m
		x=(x+v)%m
	}
	Println(x)
}
0