結果

問題 No.1499 羊が、何匹だっけ
ユーザー マサマサ
提出日時 2022-01-11 16:12:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 451 bytes
コンパイル時間 4,162 ms
コンパイル使用メモリ 76,480 KB
実行使用メモリ 54,432 KB
最終ジャッジ日時 2024-11-14 11:39:33
合計ジャッジ時間 6,167 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
53,936 KB
testcase_01 AC 145 ms
53,888 KB
testcase_02 AC 161 ms
54,432 KB
testcase_03 AC 162 ms
54,368 KB
testcase_04 AC 158 ms
54,420 KB
testcase_05 AC 160 ms
54,260 KB
testcase_06 AC 156 ms
54,404 KB
testcase_07 AC 150 ms
54,340 KB
testcase_08 AC 156 ms
54,216 KB
testcase_09 AC 162 ms
54,224 KB
testcase_10 AC 155 ms
54,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Ex {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int count = sc.nextInt();
		String next = sc.nextLine();

		int[] ary = new int[count];
		for (int i = 0; i < count; i++) {
			String line = sc.nextLine();
			ary[i] = Integer.parseInt(line.substring(11, line.indexOf(" ", 11))) + 1;
		}

		for (int value : ary) {
			System.out.println("Hitsuji ga " + value + " hiki");
		}
	}
}
0