結果

問題 No.1026 OGAWA's New Keyboard
ユーザー panyapanya
提出日時 2020-04-14 19:58:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 194 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 64,680 KB
最終ジャッジ日時 2024-09-16 05:01:05
合計ジャッジ時間 17,932 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 529 ms
43,464 KB
testcase_01 AC 522 ms
43,452 KB
testcase_02 AC 529 ms
43,592 KB
testcase_03 AC 524 ms
43,716 KB
testcase_04 TLE -
testcase_05 AC 542 ms
43,576 KB
testcase_06 AC 560 ms
43,588 KB
testcase_07 AC 944 ms
55,228 KB
testcase_08 AC 537 ms
43,464 KB
testcase_09 AC 516 ms
43,596 KB
testcase_10 AC 519 ms
43,468 KB
testcase_11 AC 511 ms
43,572 KB
testcase_12 AC 514 ms
43,468 KB
testcase_13 AC 522 ms
43,464 KB
testcase_14 AC 512 ms
43,340 KB
testcase_15 AC 514 ms
43,468 KB
testcase_16 AC 517 ms
43,696 KB
testcase_17 AC 673 ms
45,492 KB
testcase_18 AC 519 ms
43,332 KB
testcase_19 AC 670 ms
45,492 KB
testcase_20 AC 524 ms
43,720 KB
testcase_21 AC 545 ms
43,464 KB
testcase_22 AC 522 ms
43,464 KB
testcase_23 AC 522 ms
43,720 KB
testcase_24 AC 859 ms
51,892 KB
testcase_25 AC 528 ms
43,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

n=int(input())
aa=np.array([list(input().split()) for _ in range(n)])
x=aa[np.where(aa[:,0]=='1')][:,1][::-1]
y=aa[np.where(aa[:,0]=='0')][:,1]
print(''.join(np.append(x,y)))
0