結果

問題 No.1343 Dividing Digit
ユーザー kotatsugamekotatsugame
提出日時 2021-01-16 15:58:01
言語 Ruby
(3.3.0)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 69 bytes
コンパイル時間 52 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 19,200 KB
最終ジャッジ日時 2024-11-27 18:58:03
合計ジャッジ時間 4,359 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
12,160 KB
testcase_01 AC 91 ms
12,288 KB
testcase_02 AC 91 ms
12,160 KB
testcase_03 AC 175 ms
18,432 KB
testcase_04 AC 99 ms
12,288 KB
testcase_05 AC 111 ms
13,824 KB
testcase_06 AC 103 ms
13,056 KB
testcase_07 AC 118 ms
14,336 KB
testcase_08 AC 157 ms
17,664 KB
testcase_09 AC 163 ms
18,432 KB
testcase_10 AC 102 ms
12,672 KB
testcase_11 AC 119 ms
13,952 KB
testcase_12 AC 150 ms
17,536 KB
testcase_13 AC 148 ms
17,024 KB
testcase_14 AC 102 ms
12,672 KB
testcase_15 AC 116 ms
13,824 KB
testcase_16 AC 101 ms
12,800 KB
testcase_17 AC 161 ms
18,432 KB
testcase_18 AC 173 ms
19,072 KB
testcase_19 AC 148 ms
17,280 KB
testcase_20 AC 124 ms
15,232 KB
testcase_21 AC 159 ms
18,304 KB
testcase_22 AC 167 ms
18,304 KB
testcase_23 AC 178 ms
18,944 KB
testcase_24 AC 173 ms
19,200 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n,k,*a=gets(nil).split.map &:to_i
m=a.sum
p a.sum{_1*k.pow(n-=1,m)}%m
0