結果

問題 No.1338 Giant Class
ユーザー simansiman
提出日時 2021-01-19 16:11:09
言語 Ruby
(3.4.1)
結果
AC  
実行時間 367 ms / 2,000 ms
コード長 193 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 18,816 KB
最終ジャッジ日時 2024-12-16 11:06:44
合計ジャッジ時間 7,844 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
12,288 KB
testcase_01 AC 92 ms
12,160 KB
testcase_02 AC 318 ms
12,288 KB
testcase_03 AC 82 ms
12,160 KB
testcase_04 AC 81 ms
12,160 KB
testcase_05 AC 79 ms
12,288 KB
testcase_06 AC 237 ms
15,104 KB
testcase_07 AC 301 ms
18,560 KB
testcase_08 AC 225 ms
14,976 KB
testcase_09 AC 218 ms
14,848 KB
testcase_10 AC 352 ms
18,432 KB
testcase_11 AC 108 ms
12,672 KB
testcase_12 AC 258 ms
14,720 KB
testcase_13 AC 239 ms
15,104 KB
testcase_14 AC 132 ms
12,928 KB
testcase_15 AC 151 ms
13,696 KB
testcase_16 AC 109 ms
12,416 KB
testcase_17 AC 233 ms
15,104 KB
testcase_18 AC 125 ms
12,800 KB
testcase_19 AC 159 ms
13,568 KB
testcase_20 AC 340 ms
18,816 KB
testcase_21 AC 340 ms
18,560 KB
testcase_22 AC 367 ms
18,688 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

H, W, Q = gets.split.map(&:to_i)

ans = H * W
cur = Hash.new(H)

Q.times do
  y, x = gets.split.map(&:to_i)

  if y <= cur[x]
    ans -= cur[x] - y + 1
    cur[x] = y - 1
  end

  puts ans
end
0