結果

問題 No.1108 移調
ユーザー RuteRute
提出日時 2020-05-26 21:00:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 362 bytes
コンパイル時間 2,042 ms
コンパイル使用メモリ 76,044 KB
実行使用メモリ 54,464 KB
最終ジャッジ日時 2024-10-13 02:59:49
合計ジャッジ時間 6,132 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,224 KB
testcase_01 AC 140 ms
54,160 KB
testcase_02 AC 123 ms
53,424 KB
testcase_03 AC 151 ms
54,432 KB
testcase_04 AC 134 ms
54,188 KB
testcase_05 AC 147 ms
54,464 KB
testcase_06 AC 141 ms
54,196 KB
testcase_07 AC 146 ms
54,032 KB
testcase_08 AC 155 ms
54,088 KB
testcase_09 AC 145 ms
54,296 KB
testcase_10 AC 143 ms
54,148 KB
testcase_11 AC 144 ms
54,460 KB
testcase_12 AC 141 ms
54,328 KB
testcase_13 AC 130 ms
53,224 KB
testcase_14 AC 146 ms
54,332 KB
testcase_15 AC 133 ms
54,096 KB
testcase_16 AC 141 ms
54,084 KB
testcase_17 AC 138 ms
54,420 KB
testcase_18 AC 141 ms
53,984 KB
testcase_19 AC 147 ms
54,392 KB
testcase_20 AC 153 ms
54,180 KB
testcase_21 AC 131 ms
54,388 KB
testcase_22 AC 152 ms
54,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main {
	public static void main(String[] args){
		Scanner scan = new Scanner (System.in);
		int n = scan.nextInt();
		int h = scan.nextInt();
		
		int [] a = new int[n];
		for (int i=0; i<n; i++) {
			a[i] = scan.nextInt()+h;
		}
		for (int i=0; i<n; i++) {
			System.out.print(a[i]+" ");
		}
		System.out.println("");
	}
}
0