結果

問題 No.153 石の山
ユーザー ぴろずぴろず
提出日時 2015-02-15 23:50:16
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 258 bytes
コンパイル時間 5,721 ms
コンパイル使用メモリ 73,744 KB
実行使用メモリ 41,572 KB
最終ジャッジ日時 2024-04-22 14:19:03
合計ジャッジ時間 7,824 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
40,748 KB
testcase_01 AC 131 ms
40,984 KB
testcase_02 AC 129 ms
41,148 KB
testcase_03 AC 120 ms
40,284 KB
testcase_04 AC 115 ms
40,120 KB
testcase_05 AC 114 ms
40,120 KB
testcase_06 AC 114 ms
40,132 KB
testcase_07 AC 128 ms
41,052 KB
testcase_08 AC 114 ms
39,976 KB
testcase_09 AC 118 ms
40,244 KB
testcase_10 AC 127 ms
41,312 KB
testcase_11 AC 114 ms
40,048 KB
testcase_12 AC 117 ms
40,840 KB
testcase_13 AC 128 ms
40,940 KB
testcase_14 AC 129 ms
41,016 KB
testcase_15 AC 129 ms
41,396 KB
testcase_16 WA -
testcase_17 AC 129 ms
41,480 KB
testcase_18 AC 124 ms
41,224 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 127 ms
41,244 KB
testcase_22 AC 124 ms
41,352 KB
testcase_23 AC 118 ms
40,596 KB
testcase_24 AC 126 ms
41,236 KB
testcase_25 AC 113 ms
40,052 KB
testcase_26 AC 113 ms
40,184 KB
testcase_27 WA -
testcase_28 AC 113 ms
39,836 KB
testcase_29 WA -
testcase_30 AC 114 ms
39,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no153;

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		if (n == 1) {
			System.out.println("B");
		}else{
			System.out.println("A");
		}
	}
}
0