結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
12,160 KB
testcase_01 AC 69 ms
12,416 KB
testcase_02 AC 265 ms
12,288 KB
testcase_03 AC 69 ms
12,160 KB
testcase_04 AC 70 ms
12,160 KB
testcase_05 AC 70 ms
12,288 KB
testcase_06 AC 212 ms
15,360 KB
testcase_07 AC 271 ms
18,432 KB
testcase_08 AC 204 ms
15,104 KB
testcase_09 AC 197 ms
14,848 KB
testcase_10 AC 304 ms
18,560 KB
testcase_11 AC 94 ms
12,928 KB
testcase_12 AC 229 ms
14,976 KB
testcase_13 AC 201 ms
14,976 KB
testcase_14 AC 112 ms
12,800 KB
testcase_15 AC 123 ms
13,440 KB
testcase_16 AC 90 ms
12,544 KB
testcase_17 AC 199 ms
15,104 KB
testcase_18 AC 105 ms
13,056 KB
testcase_19 AC 132 ms
13,568 KB
testcase_20 AC 301 ms
18,560 KB
testcase_21 AC 297 ms
18,816 KB
testcase_22 AC 297 ms
18,816 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