結果
問題 | No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia |
ユーザー | horitaka1999 |
提出日時 | 2021-10-29 22:43:39 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 414 bytes |
コンパイル時間 | 368 ms |
コンパイル使用メモリ | 82,560 KB |
実行使用メモリ | 271,748 KB |
最終ジャッジ日時 | 2024-10-07 12:26:24 |
合計ジャッジ時間 | 7,601 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
52,896 KB |
testcase_01 | AC | 39 ms
51,840 KB |
testcase_02 | AC | 40 ms
52,224 KB |
testcase_03 | AC | 39 ms
52,224 KB |
testcase_04 | AC | 39 ms
51,968 KB |
testcase_05 | AC | 40 ms
51,968 KB |
testcase_06 | AC | 40 ms
51,584 KB |
testcase_07 | AC | 39 ms
51,840 KB |
testcase_08 | AC | 41 ms
52,224 KB |
testcase_09 | AC | 39 ms
51,968 KB |
testcase_10 | AC | 39 ms
51,968 KB |
testcase_11 | AC | 45 ms
58,752 KB |
testcase_12 | AC | 39 ms
52,224 KB |
testcase_13 | AC | 43 ms
58,624 KB |
testcase_14 | AC | 44 ms
58,624 KB |
testcase_15 | AC | 41 ms
52,096 KB |
testcase_16 | AC | 784 ms
117,676 KB |
testcase_17 | TLE | - |
testcase_18 | AC | 1,691 ms
259,852 KB |
testcase_19 | AC | 340 ms
96,728 KB |
testcase_20 | AC | 386 ms
95,248 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] ,reverse=True) 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)