結果

問題 No.2729 Addition and Multiplication in yukicoder (Easy)
ユーザー ID 21712ID 21712
提出日時 2024-11-07 21:42:56
言語 Go
(1.22.1)
結果
AC  
実行時間 203 ms / 2,000 ms
コード長 302 bytes
コンパイル時間 13,641 ms
コンパイル使用メモリ 233,116 KB
実行使用メモリ 6,016 KB
最終ジャッジ日時 2024-11-07 21:43:15
合計ジャッジ時間 16,638 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 134 ms
6,016 KB
testcase_03 AC 116 ms
5,248 KB
testcase_04 AC 121 ms
5,248 KB
testcase_05 AC 128 ms
5,248 KB
testcase_06 AC 191 ms
6,016 KB
testcase_07 AC 153 ms
5,760 KB
testcase_08 AC 155 ms
6,016 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 202 ms
6,016 KB
testcase_13 AC 200 ms
6,016 KB
testcase_14 AC 203 ms
6,016 KB
testcase_15 AC 202 ms
6,016 KB
testcase_16 AC 135 ms
5,632 KB
testcase_17 AC 137 ms
5,760 KB
testcase_18 AC 170 ms
5,760 KB
testcase_19 AC 136 ms
5,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

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

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