結果

問題 No.1338 Giant Class
ユーザー tamura2004tamura2004
提出日時 2021-01-21 09:42:54
言語 Ruby
(3.3.0)
結果
AC  
実行時間 344 ms / 2,000 ms
コード長 205 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 18,560 KB
最終ジャッジ日時 2024-06-06 14:52:29
合計ジャッジ時間 7,052 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
12,288 KB
testcase_01 AC 87 ms
12,160 KB
testcase_02 AC 293 ms
12,288 KB
testcase_03 AC 79 ms
12,032 KB
testcase_04 AC 79 ms
12,032 KB
testcase_05 AC 79 ms
12,160 KB
testcase_06 AC 235 ms
14,976 KB
testcase_07 AC 308 ms
18,176 KB
testcase_08 AC 224 ms
14,848 KB
testcase_09 AC 225 ms
14,976 KB
testcase_10 AC 340 ms
18,432 KB
testcase_11 AC 102 ms
12,800 KB
testcase_12 AC 251 ms
14,720 KB
testcase_13 AC 228 ms
15,104 KB
testcase_14 AC 117 ms
12,800 KB
testcase_15 AC 136 ms
13,440 KB
testcase_16 AC 101 ms
12,672 KB
testcase_17 AC 217 ms
14,976 KB
testcase_18 AC 118 ms
12,928 KB
testcase_19 AC 148 ms
13,696 KB
testcase_20 AC 331 ms
18,560 KB
testcase_21 AC 344 ms
18,432 KB
testcase_22 AC 335 ms
18,432 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

h,w,q = gets.to_s.split.map{ |v| v.to_i }
mini = Hash.new(h)
ans = h * w
q.times do
  i,j = gets.to_s.split.map{ |v| v.to_i - 1}
  if i < mini[j]
    ans -= mini[j] - i
    mini[j] = i
  end
  puts ans
end
0