結果

問題 No.1343 Dividing Digit
ユーザー kotatsugamekotatsugame
提出日時 2021-01-16 16:01:59
言語 Ruby
(3.4.1)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 67 bytes
コンパイル時間 50 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 19,200 KB
最終ジャッジ日時 2024-11-27 19:04:38
合計ジャッジ時間 3,693 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
12,288 KB
testcase_01 AC 73 ms
12,160 KB
testcase_02 AC 76 ms
12,160 KB
testcase_03 AC 141 ms
18,560 KB
testcase_04 AC 82 ms
12,416 KB
testcase_05 AC 94 ms
13,696 KB
testcase_06 AC 86 ms
13,184 KB
testcase_07 AC 102 ms
14,464 KB
testcase_08 AC 131 ms
17,792 KB
testcase_09 AC 136 ms
18,432 KB
testcase_10 AC 82 ms
12,800 KB
testcase_11 AC 96 ms
14,336 KB
testcase_12 AC 125 ms
17,408 KB
testcase_13 AC 122 ms
17,024 KB
testcase_14 AC 82 ms
12,672 KB
testcase_15 AC 95 ms
13,952 KB
testcase_16 AC 84 ms
12,800 KB
testcase_17 AC 136 ms
18,304 KB
testcase_18 AC 142 ms
18,944 KB
testcase_19 AC 121 ms
17,152 KB
testcase_20 AC 108 ms
15,232 KB
testcase_21 AC 134 ms
18,176 KB
testcase_22 AC 133 ms
18,304 KB
testcase_23 AC 144 ms
18,944 KB
testcase_24 AC 145 ms
19,200 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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