結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
12,032 KB
testcase_01 AC 78 ms
12,160 KB
testcase_02 AC 78 ms
12,032 KB
testcase_03 AC 152 ms
19,072 KB
testcase_04 AC 83 ms
12,416 KB
testcase_05 AC 101 ms
13,568 KB
testcase_06 AC 89 ms
13,056 KB
testcase_07 AC 106 ms
14,336 KB
testcase_08 AC 136 ms
17,792 KB
testcase_09 AC 145 ms
18,304 KB
testcase_10 AC 84 ms
12,800 KB
testcase_11 AC 101 ms
14,080 KB
testcase_12 AC 125 ms
17,536 KB
testcase_13 AC 123 ms
17,024 KB
testcase_14 AC 87 ms
12,672 KB
testcase_15 AC 99 ms
13,824 KB
testcase_16 AC 87 ms
12,416 KB
testcase_17 AC 138 ms
18,048 KB
testcase_18 AC 147 ms
18,816 KB
testcase_19 AC 129 ms
17,152 KB
testcase_20 AC 106 ms
15,104 KB
testcase_21 AC 135 ms
18,176 KB
testcase_22 AC 142 ms
18,176 KB
testcase_23 AC 155 ms
18,688 KB
testcase_24 AC 149 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