結果

問題 No.694 square1001 and Permutation 3
ユーザー cielciel
提出日時 2018-12-04 14:20:40
言語 Crystal
(1.11.2)
結果
AC  
実行時間 1,166 ms / 3,000 ms
コード長 325 bytes
コンパイル時間 16,148 ms
コンパイル使用メモリ 300,936 KB
実行使用メモリ 47,840 KB
最終ジャッジ日時 2024-06-30 19:39:56
合計ジャッジ時間 22,094 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 4 ms
6,812 KB
testcase_02 AC 4 ms
6,940 KB
testcase_03 AC 5 ms
6,940 KB
testcase_04 AC 5 ms
6,940 KB
testcase_05 AC 5 ms
6,940 KB
testcase_06 AC 4 ms
6,944 KB
testcase_07 AC 882 ms
30,940 KB
testcase_08 AC 1,158 ms
41,040 KB
testcase_09 AC 1,142 ms
44,660 KB
testcase_10 AC 763 ms
35,648 KB
testcase_11 AC 1,166 ms
47,840 KB
testcase_12 AC 1,144 ms
47,220 KB
testcase_13 AC 4 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

W=[0]*9**6
a=ARGF.gets_to_end.split.map &.to_i
i=n=a.shift
z=(0...n).to_a.sort{|i,j|a[i]!=a[j] ? a[i]<=>a[j]: i<=>j}
r=0_i64
b=a.sort
while 0<=(i-=1)
k=z[i];while k>0;r+=W[k];k-=-k&k end
k=z[i]+1;while k<=n;W[k]+=1;k+=-k&k end
end
n.times{|i|puts r;r-=((0...n).bsearch{|j|a[i]<=b[j]}||n)-n+((0...n).bsearch{|j|a[i]<b[j]}||n)}
0