結果

問題 No.2184 A○B問題
ユーザー MasKoaTSMasKoaTS
提出日時 2023-01-13 21:22:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 819 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 87,140 KB
実行使用メモリ 81,012 KB
最終ジャッジ日時 2023-08-26 02:52:07
合計ジャッジ時間 5,894 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 181 ms
80,860 KB
testcase_01 AC 182 ms
80,716 KB
testcase_02 AC 174 ms
80,832 KB
testcase_03 AC 179 ms
80,856 KB
testcase_04 AC 179 ms
80,848 KB
testcase_05 AC 183 ms
80,648 KB
testcase_06 AC 185 ms
80,720 KB
testcase_07 AC 186 ms
80,860 KB
testcase_08 AC 190 ms
80,892 KB
testcase_09 AC 187 ms
80,716 KB
testcase_10 AC 188 ms
80,812 KB
testcase_11 AC 186 ms
80,732 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