結果

問題 No.2297 Best Grouping
ユーザー YGBKYGBK
提出日時 2023-05-15 18:15:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 320 bytes
コンパイル時間 3,716 ms
コンパイル使用メモリ 75,052 KB
実行使用メモリ 41,240 KB
最終ジャッジ日時 2024-05-08 01:35:11
合計ジャッジ時間 6,865 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
39,960 KB
testcase_01 AC 121 ms
41,096 KB
testcase_02 AC 112 ms
40,420 KB
testcase_03 AC 122 ms
41,044 KB
testcase_04 AC 124 ms
41,092 KB
testcase_05 AC 106 ms
39,892 KB
testcase_06 AC 115 ms
40,712 KB
testcase_07 AC 127 ms
40,896 KB
testcase_08 AC 124 ms
41,088 KB
testcase_09 AC 125 ms
41,112 KB
testcase_10 AC 110 ms
39,876 KB
testcase_11 AC 115 ms
40,660 KB
testcase_12 AC 120 ms
41,124 KB
testcase_13 AC 111 ms
40,160 KB
testcase_14 AC 122 ms
41,216 KB
testcase_15 AC 109 ms
40,208 KB
testcase_16 AC 111 ms
40,176 KB
testcase_17 AC 120 ms
41,240 KB
testcase_18 AC 123 ms
41,060 KB
testcase_19 AC 119 ms
41,132 KB
testcase_20 AC 108 ms
39,960 KB
testcase_21 AC 108 ms
40,056 KB
testcase_22 AC 121 ms
41,144 KB
testcase_23 AC 121 ms
41,112 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 == 2)	System.out.println(1);

		sc.close();
	}

}
0