結果

問題 No.1338 Giant Class
ユーザー yuruhiyayuruhiya
提出日時 2021-01-15 21:34:55
言語 Crystal
(1.11.2)
結果
RE  
実行時間 -
コード長 326 bytes
コンパイル時間 10,772 ms
コンパイル使用メモリ 296,008 KB
実行使用メモリ 813,660 KB
最終ジャッジ日時 2024-06-30 21:57:45
合計ジャッジ時間 14,204 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 159 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 134 ms
81,436 KB
testcase_07 AC 183 ms
81,712 KB
testcase_08 AC 113 ms
33,384 KB
testcase_09 AC 99 ms
11,844 KB
testcase_10 AC 186 ms
34,340 KB
testcase_11 AC 41 ms
65,904 KB
testcase_12 AC 123 ms
6,940 KB
testcase_13 RE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

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 = [h] * w
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