結果

問題 No.610 区間賞(Section Award)
ユーザー GrayCoderGrayCoder
提出日時 2017-12-11 21:18:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 253 ms / 2,000 ms
コード長 454 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 34,784 KB
最終ジャッジ日時 2024-11-30 21:00:18
合計ジャッジ時間 8,172 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 32 ms
10,752 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 32 ms
10,880 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 31 ms
11,008 KB
testcase_11 AC 32 ms
10,880 KB
testcase_12 AC 31 ms
10,752 KB
testcase_13 AC 32 ms
10,880 KB
testcase_14 AC 32 ms
10,880 KB
testcase_15 AC 32 ms
11,008 KB
testcase_16 AC 31 ms
10,752 KB
testcase_17 AC 31 ms
10,752 KB
testcase_18 AC 31 ms
10,752 KB
testcase_19 AC 64 ms
16,852 KB
testcase_20 AC 219 ms
34,116 KB
testcase_21 AC 54 ms
13,664 KB
testcase_22 AC 131 ms
24,932 KB
testcase_23 AC 42 ms
12,800 KB
testcase_24 AC 66 ms
17,936 KB
testcase_25 AC 38 ms
12,288 KB
testcase_26 AC 94 ms
22,304 KB
testcase_27 AC 219 ms
34,476 KB
testcase_28 AC 183 ms
31,008 KB
testcase_29 AC 122 ms
24,608 KB
testcase_30 AC 170 ms
30,184 KB
testcase_31 AC 98 ms
20,376 KB
testcase_32 AC 194 ms
33,056 KB
testcase_33 AC 50 ms
13,756 KB
testcase_34 AC 253 ms
34,444 KB
testcase_35 AC 108 ms
22,116 KB
testcase_36 AC 198 ms
33,164 KB
testcase_37 AC 178 ms
26,124 KB
testcase_38 AC 59 ms
16,840 KB
testcase_39 AC 221 ms
34,784 KB
testcase_40 AC 241 ms
34,592 KB
testcase_41 AC 223 ms
34,544 KB
testcase_42 AC 221 ms
34,660 KB
testcase_43 AC 212 ms
34,636 KB
testcase_44 AC 189 ms
25,336 KB
testcase_45 AC 224 ms
30,564 KB
testcase_46 AC 229 ms
30,616 KB
testcase_47 AC 145 ms
30,356 KB
testcase_48 AC 138 ms
26,232 KB
testcase_49 AC 148 ms
30,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N = int(input())
    A = tuple(map(int, input().split()))
    B = tuple(map(int, input().split()))

    safe = []
    apnd_safe = safe.append
    out = set()
    apnd_out = out.add
    a = {j: i for i, j in enumerate(A)}
    for i, j in enumerate(B):
        k = a[j]
        if i <= k and j not in out:
            apnd_safe(j)
            for x in A[i:k]:
                apnd_out(x)

    safe.sort()
    print(*safe, sep='\n')

main()
0