結果
問題 | No.694 square1001 and Permutation 3 |
ユーザー | ciel |
提出日時 | 2018-06-10 00:36:15 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 301 bytes |
コンパイル時間 | 118 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 44,832 KB |
最終ジャッジ日時 | 2024-06-30 13:06:46 |
合計ジャッジ時間 | 6,093 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
コンパイルメッセージ
Syntax OK
ソースコード
W=[0]*10**6 def bit(a,n) r=0 i=n-1 while i>=0 idx=a[i];(r+=W[idx];idx&=idx-1)while idx>0 idx=a[i];(W[idx]+=1;idx+=idx&-idx)while idx<n i-=1 end r end n,*a=$<.map(&:to_i) x=bit(a,a.size) b=a.sort n.times{|i| p x x-=((0...n).bsearch{|j|a[i]<=b[j]}||n)-n+((0...n).bsearch{|j|a[i]<b[j]}||n) }