結果

問題 No.987 N×Mマス計算(基本)
ユーザー kcz146kcz146
提出日時 2020-06-16 01:30:03
言語 Ruby
(3.3.0)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 184 bytes
コンパイル時間 37 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2024-07-03 11:44:05
合計ジャッジ時間 3,362 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
12,032 KB
testcase_01 AC 87 ms
12,416 KB
testcase_02 AC 126 ms
12,544 KB
testcase_03 AC 98 ms
12,416 KB
testcase_04 AC 114 ms
12,416 KB
testcase_05 AC 113 ms
12,416 KB
testcase_06 AC 126 ms
12,416 KB
testcase_07 AC 108 ms
12,416 KB
testcase_08 AC 88 ms
12,160 KB
testcase_09 AC 87 ms
12,160 KB
testcase_10 AC 88 ms
12,160 KB
testcase_11 AC 131 ms
12,416 KB
testcase_12 AC 135 ms
12,800 KB
testcase_13 AC 100 ms
12,672 KB
testcase_14 AC 87 ms
12,288 KB
testcase_15 AC 116 ms
12,672 KB
testcase_16 AC 143 ms
12,672 KB
testcase_17 AC 119 ms
12,928 KB
testcase_18 AC 134 ms
12,672 KB
testcase_19 AC 166 ms
12,672 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - m
Syntax OK

ソースコード

diff #

n,m=gets.split.map(&:to_i)
op,*b = gets.split
b = b.map(&:to_i)
a=n.times.map{gets.to_i}
a.each do |x|
    b.each do |y|
        print eval([x,op,y]*'').to_s + ' '
    end
    puts
end
0