結果
問題 | No.490 yukiソート |
ユーザー | RiaruHebisuma |
提出日時 | 2017-03-10 23:00:56 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 261 bytes |
コンパイル時間 | 268 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-06-24 10:19:15 |
合計ジャッジ時間 | 22,963 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
10,752 KB |
testcase_01 | WA | - |
testcase_02 | AC | 32 ms
10,752 KB |
testcase_03 | AC | 31 ms
10,880 KB |
testcase_04 | AC | 72 ms
10,880 KB |
testcase_05 | AC | 70 ms
10,880 KB |
testcase_06 | AC | 68 ms
10,752 KB |
testcase_07 | AC | 74 ms
10,752 KB |
testcase_08 | AC | 70 ms
10,880 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | WA | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | WA | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | AC | 28 ms
10,752 KB |
testcase_25 | AC | 29 ms
10,752 KB |
testcase_26 | AC | 28 ms
10,752 KB |
testcase_27 | AC | 28 ms
10,752 KB |
testcase_28 | AC | 29 ms
10,880 KB |
testcase_29 | AC | 28 ms
10,880 KB |
testcase_30 | AC | 29 ms
10,752 KB |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
ソースコード
n = int(input()) a = list(map(int,input().split())) for i in range(1,(2*n)-2): for p in range(n): q = i-p if p<q and q < n: if a[p]>a[q]: a[p],a[q]=a[q],a[p] for i in a: print(i,end=' ')