結果
問題 | No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia |
ユーザー | horitaka1999 |
提出日時 | 2021-10-29 22:53:35 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 401 bytes |
コンパイル時間 | 261 ms |
コンパイル使用メモリ | 82,580 KB |
実行使用メモリ | 264,892 KB |
最終ジャッジ日時 | 2024-10-07 12:34:46 |
合計ジャッジ時間 | 8,673 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
57,088 KB |
testcase_01 | AC | 38 ms
52,224 KB |
testcase_02 | AC | 39 ms
51,876 KB |
testcase_03 | AC | 39 ms
52,352 KB |
testcase_04 | AC | 39 ms
51,840 KB |
testcase_05 | AC | 38 ms
51,840 KB |
testcase_06 | AC | 39 ms
52,096 KB |
testcase_07 | AC | 40 ms
51,712 KB |
testcase_08 | AC | 40 ms
51,968 KB |
testcase_09 | AC | 40 ms
51,840 KB |
testcase_10 | AC | 39 ms
51,584 KB |
testcase_11 | AC | 43 ms
58,368 KB |
testcase_12 | AC | 39 ms
51,968 KB |
testcase_13 | AC | 42 ms
58,752 KB |
testcase_14 | AC | 43 ms
58,368 KB |
testcase_15 | AC | 40 ms
52,224 KB |
testcase_16 | AC | 806 ms
117,552 KB |
testcase_17 | TLE | - |
testcase_18 | AC | 1,705 ms
259,744 KB |
testcase_19 | AC | 321 ms
96,288 KB |
testcase_20 | AC | 380 ms
95,096 KB |
testcase_21 | TLE | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
ソースコード
N,K = map(int,input().split()) A = list(map(int,input().split())) B = list(map(int,input().split())) board = [] for i in range(N): board.append((A[i]-B[i],i)) board.sort(key = lambda x:x[0]) board.reverse() ans_A = [False] * N for i in range(K): t,index = board[i] ans_A[index] = True ANS = '' for i in range(N): if ans_A[i]: ANS += 'A' else: ANS += 'B' print(ANS)