結果

問題 No.1499 羊が、何匹だっけ
ユーザー game_krbgame_krb
提出日時 2021-05-08 15:01:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 239 ms / 2,000 ms
コード長 438 bytes
コンパイル時間 2,670 ms
コンパイル使用メモリ 76,536 KB
実行使用メモリ 43,728 KB
最終ジャッジ日時 2024-09-16 19:37:12
合計ジャッジ時間 5,804 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 188 ms
42,984 KB
testcase_01 AC 186 ms
43,028 KB
testcase_02 AC 217 ms
43,308 KB
testcase_03 AC 225 ms
43,576 KB
testcase_04 AC 239 ms
43,728 KB
testcase_05 AC 231 ms
43,260 KB
testcase_06 AC 201 ms
43,180 KB
testcase_07 AC 200 ms
43,320 KB
testcase_08 AC 197 ms
43,360 KB
testcase_09 AC 223 ms
43,148 KB
testcase_10 AC 198 ms
42,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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