結果

問題 No.2184 A○B問題
ユーザー MasKoaTSMasKoaTS
提出日時 2023-01-13 21:22:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 819 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 87,168 KB
最終ジャッジ日時 2024-06-06 21:47:28
合計ジャッジ時間 4,543 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
86,732 KB
testcase_01 AC 138 ms
86,656 KB
testcase_02 AC 130 ms
86,628 KB
testcase_03 AC 132 ms
86,656 KB
testcase_04 AC 131 ms
86,656 KB
testcase_05 AC 130 ms
86,440 KB
testcase_06 AC 130 ms
86,472 KB
testcase_07 AC 131 ms
86,608 KB
testcase_08 AC 129 ms
86,784 KB
testcase_09 AC 131 ms
86,784 KB
testcase_10 AC 128 ms
86,400 KB
testcase_11 AC 132 ms
86,656 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools as iter
import collections as coll
import heapq as hq
import bisect as bis
from decimal import Decimal as dec
from functools import cmp_to_key
import math
import sys
#import pypyjit
#pypyjit.set_param('max_unroll_recursion=-1')
sys.setrecursionlimit(10 ** 6)
inp = sys.stdin.readline
input = lambda : inp().rstrip()
getN = lambda : int(inp())
getNs = lambda : map(int, inp().split())
getList = lambda :list(map(int, inp().split()))
getStrs = lambda n : [input() for _ in [0] * n]
def yexit(): print("Yes"); exit(0)
def nexit(): print("No"); exit(0)
pi = 3.141592653589793
mod = 1000000007
MOD = 998244353
INF = 4611686018427387903
dx = [1, 0, -1, 0];	dy = [0, 1, 0, -1]
#di = coll.defaultdict(int)


"""
Main Code
"""

a = [k-1 for k in getNs()]
b = [k-1 for k in getNs()]

print(*[b[k]+1 for k in a])
0