結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,032 KB
testcase_01 AC 92 ms
12,160 KB
testcase_02 AC 319 ms
12,800 KB
testcase_03 AC 87 ms
12,160 KB
testcase_04 AC 89 ms
12,160 KB
testcase_05 AC 91 ms
12,288 KB
testcase_06 AC 352 ms
81,920 KB
testcase_07 AC 404 ms
82,304 KB
testcase_08 AC 267 ms
34,432 KB
testcase_09 AC 240 ms
18,944 KB
testcase_10 AC 372 ms
35,328 KB
testcase_11 AC 184 ms
73,216 KB
testcase_12 AC 272 ms
12,800 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)
l=[h+1]*w
a=h*w
q.times do
  y,x=gets.split.map(&:to_i)
  if l[x-1]>y
    a-=l[x-1]-y
    l[x-1]=y
  end
  puts a
end
0