結果
問題 | No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia |
ユーザー | horitaka1999 |
提出日時 | 2021-10-29 22:50:38 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 414 bytes |
コンパイル時間 | 881 ms |
コンパイル使用メモリ | 81,864 KB |
実行使用メモリ | 264,156 KB |
最終ジャッジ日時 | 2024-10-07 12:30:38 |
合計ジャッジ時間 | 7,562 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
59,192 KB |
testcase_01 | AC | 36 ms
52,068 KB |
testcase_02 | AC | 37 ms
52,648 KB |
testcase_03 | AC | 36 ms
52,232 KB |
testcase_04 | AC | 36 ms
52,364 KB |
testcase_05 | AC | 37 ms
52,136 KB |
testcase_06 | AC | 36 ms
52,080 KB |
testcase_07 | AC | 37 ms
53,320 KB |
testcase_08 | AC | 37 ms
52,072 KB |
testcase_09 | AC | 38 ms
52,440 KB |
testcase_10 | AC | 37 ms
52,092 KB |
testcase_11 | AC | 39 ms
59,052 KB |
testcase_12 | AC | 38 ms
53,064 KB |
testcase_13 | AC | 40 ms
58,688 KB |
testcase_14 | AC | 42 ms
58,892 KB |
testcase_15 | AC | 38 ms
52,960 KB |
testcase_16 | AC | 669 ms
117,488 KB |
testcase_17 | TLE | - |
testcase_18 | AC | 1,387 ms
259,580 KB |
testcase_19 | AC | 288 ms
96,620 KB |
testcase_20 | AC | 328 ms
95,004 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 for _ in range(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)