結果
問題 | No.694 square1001 and Permutation 3 |
ユーザー | Mario |
提出日時 | 2018-06-09 03:11:23 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 330 bytes |
コンパイル時間 | 90 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 22,176 KB |
最終ジャッジ日時 | 2024-06-30 12:21:50 |
合計ジャッジ時間 | 5,652 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
17,700 KB |
testcase_01 | AC | 30 ms
10,752 KB |
testcase_02 | AC | 30 ms
10,752 KB |
testcase_03 | AC | 108 ms
10,752 KB |
testcase_04 | AC | 114 ms
10,752 KB |
testcase_05 | AC | 112 ms
10,880 KB |
testcase_06 | AC | 115 ms
10,752 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
ソースコード
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