結果

問題 No.1338 Giant Class
ユーザー TomoTomo
提出日時 2021-01-15 23:08:28
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 175 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 820,480 KB
最終ジャッジ日時 2024-05-05 01:03:21
合計ジャッジ時間 8,156 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
12,160 KB
testcase_01 AC 89 ms
12,032 KB
testcase_02 AC 576 ms
13,056 KB
testcase_03 AC 88 ms
12,160 KB
testcase_04 AC 90 ms
12,160 KB
testcase_05 AC 93 ms
12,032 KB
testcase_06 AC 505 ms
82,048 KB
testcase_07 AC 646 ms
82,176 KB
testcase_08 AC 428 ms
34,816 KB
testcase_09 AC 390 ms
19,072 KB
testcase_10 AC 643 ms
35,456 KB
testcase_11 AC 213 ms
73,344 KB
testcase_12 AC 457 ms
12,928 KB
testcase_13 RE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

h,w,q=gets.split.map(&:to_i)
seki=[h]*w
sum = h*w

q.times{
  y,x=gets.split.map(&:to_i)
  if seki[x-1] > y-1
    sum -= seki[x-1] - (y-1)
    seki[x-1] = y-1
  end
  p sum
}
0