結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
12,032 KB
testcase_01 AC 90 ms
12,032 KB
testcase_02 AC 502 ms
13,056 KB
testcase_03 AC 80 ms
12,160 KB
testcase_04 AC 80 ms
12,160 KB
testcase_05 AC 82 ms
12,288 KB
testcase_06 AC 460 ms
81,792 KB
testcase_07 AC 598 ms
82,176 KB
testcase_08 AC 411 ms
34,944 KB
testcase_09 AC 361 ms
19,200 KB
testcase_10 AC 594 ms
35,328 KB
testcase_11 AC 200 ms
73,344 KB
testcase_12 AC 427 ms
13,056 KB
testcase_13 RE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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