結果

問題 No.1108 移調
ユーザー 拓哉拓哉
提出日時 2020-07-21 22:10:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 303 bytes
コンパイル時間 2,322 ms
コンパイル使用メモリ 76,336 KB
実行使用メモリ 54,624 KB
最終ジャッジ日時 2024-06-10 02:28:02
合計ジャッジ時間 5,994 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
52,716 KB
testcase_01 AC 140 ms
54,156 KB
testcase_02 AC 130 ms
53,144 KB
testcase_03 AC 144 ms
54,444 KB
testcase_04 AC 137 ms
54,148 KB
testcase_05 AC 143 ms
54,148 KB
testcase_06 AC 140 ms
53,972 KB
testcase_07 AC 142 ms
54,416 KB
testcase_08 AC 145 ms
54,624 KB
testcase_09 AC 143 ms
54,220 KB
testcase_10 AC 144 ms
54,480 KB
testcase_11 AC 138 ms
54,240 KB
testcase_12 AC 139 ms
54,360 KB
testcase_13 AC 118 ms
52,908 KB
testcase_14 AC 137 ms
53,152 KB
testcase_15 AC 116 ms
53,084 KB
testcase_16 AC 124 ms
53,200 KB
testcase_17 AC 135 ms
54,128 KB
testcase_18 AC 146 ms
54,348 KB
testcase_19 AC 161 ms
54,104 KB
testcase_20 AC 146 ms
53,804 KB
testcase_21 AC 136 ms
54,432 KB
testcase_22 AC 150 ms
53,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;


class Main {
    public static void main(String[] args) {
   		Scanner sc=new Scanner(System.in);
   		int n=sc.nextInt(),h=sc.nextInt();
   		int[] t=new int[n];
   		for(int i=0;i<n;i++)t[i]=sc.nextInt();
   		
   		for(int a:t)System.out.print(a+h+" ");
   		sc.close();
    }
}
0