結果

問題 No.632 穴埋め門松列
ユーザー YOSHIYOSHI
提出日時 2021-03-20 22:15:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 53 ms / 1,000 ms
コード長 442 bytes
コンパイル時間 2,965 ms
コンパイル使用メモリ 74,248 KB
実行使用メモリ 50,372 KB
最終ジャッジ日時 2024-11-21 11:58:28
合計ジャッジ時間 3,880 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
50,372 KB
testcase_01 AC 51 ms
50,352 KB
testcase_02 AC 52 ms
50,240 KB
testcase_03 AC 53 ms
50,272 KB
testcase_04 AC 52 ms
50,252 KB
testcase_05 AC 51 ms
49,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No00000632_Main {
	static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
	public static void main(String[] args) throws IOException {
		String[] a = br.readLine().split(" ");
		String r = "14";
		if("2".equals(a[1])) {
			r = "4";
		} else if("3".equals(a[1])) {
			r = "1";
		}
		System.out.println(r);
	}
}
0