結果

問題 No.2184 A○B問題
ユーザー Rodolphe HRodolphe H
提出日時 2023-01-13 21:32:03
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 616 bytes
コンパイル時間 2,208 ms
コンパイル使用メモリ 76,740 KB
実行使用メモリ 41,704 KB
最終ジャッジ日時 2024-12-24 16:37:41
合計ジャッジ時間 6,394 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
41,568 KB
testcase_01 AC 139 ms
41,312 KB
testcase_02 AC 139 ms
41,632 KB
testcase_03 AC 147 ms
41,572 KB
testcase_04 AC 134 ms
41,448 KB
testcase_05 AC 139 ms
41,476 KB
testcase_06 AC 145 ms
41,448 KB
testcase_07 AC 131 ms
40,748 KB
testcase_08 AC 142 ms
41,368 KB
testcase_09 AC 129 ms
40,576 KB
testcase_10 AC 131 ms
40,956 KB
testcase_11 AC 132 ms
41,680 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 java.util.Scanner;

/**
 * TODO
 */
public class Main {

    private static Scanner sc;

    public static void main(String[] args) {
        sc = new Scanner(System.in);

        solve();

        sc.close();
    }

    private static void solve() {

        int[] a = new int[5];
        int[] b = new int[5];
        for (int i = 0; i < 5; i++) {
            a[i] = sc.nextInt();
        }

        for (int i = 0; i < 5; i++) {
            b[i] = sc.nextInt();
        }

        for (int i = 0; i < 5; i++) {
            System.out.print(b[a[i]-1] + " ");
        }
        System.out.println();
    }

}
0