結果

問題 No.1338 Giant Class
ユーザー tamura2004tamura2004
提出日時 2021-01-21 09:42:54
言語 Ruby
(3.4.1)
結果
AC  
実行時間 354 ms / 2,000 ms
コード長 205 bytes
コンパイル時間 34 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 18,560 KB
最終ジャッジ日時 2024-12-24 07:02:41
合計ジャッジ時間 7,677 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
12,160 KB
testcase_01 AC 88 ms
12,288 KB
testcase_02 AC 308 ms
12,416 KB
testcase_03 AC 80 ms
12,032 KB
testcase_04 AC 87 ms
12,160 KB
testcase_05 AC 89 ms
12,288 KB
testcase_06 AC 262 ms
15,232 KB
testcase_07 AC 322 ms
18,432 KB
testcase_08 AC 239 ms
14,976 KB
testcase_09 AC 220 ms
14,720 KB
testcase_10 AC 334 ms
18,560 KB
testcase_11 AC 107 ms
12,672 KB
testcase_12 AC 255 ms
14,848 KB
testcase_13 AC 234 ms
15,104 KB
testcase_14 AC 137 ms
12,800 KB
testcase_15 AC 149 ms
13,568 KB
testcase_16 AC 106 ms
12,416 KB
testcase_17 AC 221 ms
15,232 KB
testcase_18 AC 121 ms
12,928 KB
testcase_19 AC 152 ms
13,440 KB
testcase_20 AC 339 ms
18,560 KB
testcase_21 AC 350 ms
18,560 KB
testcase_22 AC 354 ms
18,560 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