結果

問題 No.2297 Best Grouping
ユーザー YGBKYGBK
提出日時 2023-05-15 18:14:32
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 320 bytes
コンパイル時間 3,156 ms
コンパイル使用メモリ 74,584 KB
実行使用メモリ 41,676 KB
最終ジャッジ日時 2024-05-08 01:34:46
合計ジャッジ時間 6,906 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,288 KB
testcase_01 WA -
testcase_02 AC 118 ms
40,952 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 119 ms
41,248 KB
testcase_06 WA -
testcase_07 AC 118 ms
40,848 KB
testcase_08 AC 117 ms
41,244 KB
testcase_09 AC 120 ms
41,160 KB
testcase_10 AC 107 ms
40,008 KB
testcase_11 AC 119 ms
41,372 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 124 ms
41,060 KB
testcase_16 AC 122 ms
40,964 KB
testcase_17 AC 108 ms
40,124 KB
testcase_18 AC 119 ms
41,032 KB
testcase_19 AC 106 ms
40,232 KB
testcase_20 AC 122 ms
41,320 KB
testcase_21 AC 109 ms
40,020 KB
testcase_22 AC 123 ms
41,124 KB
testcase_23 AC 123 ms
41,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class MyMain {

	public static void main(String[] args) {

		Scanner sc = new Scanner(System.in);
		int n = Integer.parseInt(sc.nextLine());

		if (n % 3 == 0)	System.out.println(0);
		if (n % 3 == 1)	System.out.println(2);
		if (n % 3 == 3)	System.out.println(1);

		sc.close();
	}

}
0