結果

問題 No.1338 Giant Class
ユーザー TomoTomo
提出日時 2021-01-15 23:12:52
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 256 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 43,136 KB
最終ジャッジ日時 2024-11-26 17:20:48
合計ジャッジ時間 43,017 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
17,536 KB
testcase_01 AC 77 ms
33,920 KB
testcase_02 AC 636 ms
29,568 KB
testcase_03 AC 76 ms
37,760 KB
testcase_04 AC 80 ms
17,408 KB
testcase_05 AC 80 ms
33,920 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 425 ms
39,168 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 970 ms
21,120 KB
testcase_15 AC 1,917 ms
37,376 KB
testcase_16 AC 320 ms
20,096 KB
testcase_17 TLE -
testcase_18 AC 941 ms
20,864 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:2: warning: assigned but unused variable - q
Syntax OK

ソースコード

diff #

h,w,q=gets.split.map(&:to_i)
seki=[h]*[w,10**5].min
sum = h*w

query = $<.map{|l|l.split.map(&:to_i)}
ex = query.map{|y,x|x}.sort.uniq
query.each{|y,x|
  x = ex.index(x)
  if seki[x-1] > y-1
    sum -= seki[x-1] - (y-1)
    seki[x-1] = y-1
  end
  p sum
}
0