結果

問題 No.610 区間賞(Section Award)
ユーザー RyutoRyuto
提出日時 2017-12-12 17:11:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 472 bytes
コンパイル時間 933 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 97,432 KB
最終ジャッジ日時 2024-05-08 04:51:41
合計ジャッジ時間 6,332 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
59,072 KB
testcase_01 WA -
testcase_02 AC 34 ms
52,892 KB
testcase_03 AC 33 ms
52,988 KB
testcase_04 AC 31 ms
52,836 KB
testcase_05 AC 35 ms
52,984 KB
testcase_06 WA -
testcase_07 AC 37 ms
53,032 KB
testcase_08 WA -
testcase_09 AC 36 ms
53,276 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 34 ms
52,980 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 35 ms
52,952 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 170 ms
66,924 KB
testcase_20 TLE -
testcase_21 AC 101 ms
64,764 KB
testcase_22 WA -
testcase_23 AC 65 ms
64,044 KB
testcase_24 AC 223 ms
68,540 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 WA -
testcase_30 TLE -
testcase_31 WA -
testcase_32 TLE -
testcase_33 AC 102 ms
65,372 KB
testcase_34 TLE -
testcase_35 WA -
testcase_36 TLE -
testcase_37 AC 1,886 ms
84,680 KB
testcase_38 WA -
testcase_39 TLE -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python

n = int(input().strip())
sorder = [int(x) for x in input().split()]
forder = [int(x) for x in input().split()]

index = -1
x = 0
while index < n-1:
    tmp = sorder.index(forder[x])
    x += 1
    if tmp < index:
        continue
    elif tmp == n-1:
        index = tmp
        continue
    else:
        for i in range(index+1, tmp):
            forder.remove(sorder[i])
        index = tmp
        continue

for i in sorted(forder):
    print(i)
0