結果

問題 No.694 square1001 and Permutation 3
ユーザー MarioMario
提出日時 2018-06-09 03:27:52
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 331 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 174,692 KB
最終ジャッジ日時 2024-06-30 12:21:59
合計ジャッジ時間 5,662 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,664 KB
testcase_01 AC 37 ms
52,928 KB
testcase_02 AC 41 ms
53,172 KB
testcase_03 AC 86 ms
76,292 KB
testcase_04 AC 82 ms
76,472 KB
testcase_05 AC 82 ms
76,300 KB
testcase_06 AC 82 ms
76,300 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = [int(input()) for i in range(n)]
ac = [sum([1 if x < y else 0 for y in a[:i] ]) for i, x in enumerate(a)]

for i in range(n):
    print(sum(ac))

    a = a[1:] + [a[0]]
    ac = ac[1:] + [sum([1 if aa > a[-1] else 0 for aa in a[:-1]])]

    for i in range(n-1):
        if a[i] < a[-1]:
            ac[i] -= 1
0