結果

問題 No.153 石の山
ユーザー ぴろずぴろず
提出日時 2015-02-15 23:50:16
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 258 bytes
コンパイル時間 2,478 ms
コンパイル使用メモリ 75,052 KB
実行使用メモリ 41,808 KB
最終ジャッジ日時 2024-10-14 13:26:04
合計ジャッジ時間 7,622 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
41,412 KB
testcase_01 AC 136 ms
41,396 KB
testcase_02 AC 135 ms
41,324 KB
testcase_03 AC 138 ms
41,416 KB
testcase_04 AC 139 ms
41,536 KB
testcase_05 AC 141 ms
41,364 KB
testcase_06 AC 137 ms
41,412 KB
testcase_07 AC 137 ms
41,424 KB
testcase_08 AC 137 ms
41,560 KB
testcase_09 AC 136 ms
41,316 KB
testcase_10 AC 137 ms
41,336 KB
testcase_11 AC 138 ms
41,424 KB
testcase_12 AC 137 ms
41,320 KB
testcase_13 AC 137 ms
41,420 KB
testcase_14 AC 135 ms
41,520 KB
testcase_15 AC 136 ms
41,560 KB
testcase_16 WA -
testcase_17 AC 138 ms
41,808 KB
testcase_18 AC 138 ms
41,572 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 136 ms
41,436 KB
testcase_22 AC 134 ms
41,624 KB
testcase_23 AC 137 ms
41,416 KB
testcase_24 AC 137 ms
41,544 KB
testcase_25 AC 135 ms
41,664 KB
testcase_26 AC 135 ms
41,140 KB
testcase_27 WA -
testcase_28 AC 135 ms
41,796 KB
testcase_29 WA -
testcase_30 AC 136 ms
41,420 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