結果
問題 | No.16 累乗の加算 |
ユーザー | gemmaro |
提出日時 | 2020-04-28 10:38:34 |
言語 | Ruby (3.3.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 280 bytes |
コンパイル時間 | 149 ms |
コンパイル使用メモリ | 7,424 KB |
実行使用メモリ | 817,920 KB |
最終ジャッジ日時 | 2024-11-24 05:39:05 |
合計ジャッジ時間 | 25,239 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 89 ms
12,288 KB |
testcase_01 | AC | 83 ms
12,032 KB |
testcase_02 | MLE | - |
testcase_03 | MLE | - |
testcase_04 | MLE | - |
testcase_05 | MLE | - |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | TLE | - |
コンパイルメッセージ
Syntax OK
ソースコード
# frozen_string_literal: true LAW = 10**6 + 3 X, N = gets.chomp.split.map(&:to_i) AS = gets.chomp.split.map(&:to_i) MAX_A = AS.max EXPONENTS = MAX_A.times.each_with_object([1]) do |_i, a| a << a.last * X end RESULT = AS.map { |i| EXPONENTS[i] % LAW }.sum % LAW puts RESULT