結果

問題 No.1338 Giant Class
ユーザー yuruhiyayuruhiya
提出日時 2021-01-15 21:36:16
言語 Crystal
(1.11.2)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 344 bytes
コンパイル時間 11,173 ms
コンパイル使用メモリ 295,716 KB
実行使用メモリ 12,588 KB
最終ジャッジ日時 2024-06-30 21:58:05
合計ジャッジ時間 15,063 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 174 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 3 ms
6,944 KB
testcase_06 AC 113 ms
7,552 KB
testcase_07 AC 163 ms
12,060 KB
testcase_08 AC 105 ms
7,424 KB
testcase_09 AC 103 ms
7,424 KB
testcase_10 AC 181 ms
12,244 KB
testcase_11 AC 20 ms
6,940 KB
testcase_12 AC 131 ms
7,296 KB
testcase_13 AC 104 ms
7,680 KB
testcase_14 AC 29 ms
6,940 KB
testcase_15 AC 44 ms
6,944 KB
testcase_16 AC 16 ms
6,940 KB
testcase_17 AC 105 ms
7,552 KB
testcase_18 AC 29 ms
6,940 KB
testcase_19 AC 51 ms
6,944 KB
testcase_20 AC 187 ms
12,012 KB
testcase_21 AC 178 ms
12,588 KB
testcase_22 AC 182 ms
12,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

lib C
  fun strtoll(s : UInt8*, p : UInt8**, b : Int32) : Int64
end

class String
  def to_i64
    C.strtoll(self, nil, 10)
  end
end

h, w, q = read_line.split.map(&.to_i64)
a = Hash(Int64, Int64).new(h)
sum = h * w
q.times do |i|
  y, x = read_line.split.map(&.to_i64.pred)
  if a[x] > y
    sum -= a[x] - y
    a[x] = y
  end
  puts sum
end
0