結果

問題 No.2297 Best Grouping
ユーザー YGBKYGBK
提出日時 2023-05-15 18:15:51
言語 Java
(openjdk 23)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 320 bytes
コンパイル時間 3,345 ms
コンパイル使用メモリ 78,588 KB
実行使用メモリ 41,796 KB
最終ジャッジ日時 2024-11-30 23:04:43
合計ジャッジ時間 7,488 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,492 KB
testcase_01 AC 117 ms
40,300 KB
testcase_02 AC 129 ms
41,332 KB
testcase_03 AC 128 ms
41,420 KB
testcase_04 AC 127 ms
41,520 KB
testcase_05 AC 134 ms
41,168 KB
testcase_06 AC 128 ms
41,332 KB
testcase_07 AC 130 ms
41,352 KB
testcase_08 AC 129 ms
41,796 KB
testcase_09 AC 130 ms
41,364 KB
testcase_10 AC 126 ms
41,460 KB
testcase_11 AC 130 ms
41,292 KB
testcase_12 AC 130 ms
41,252 KB
testcase_13 AC 130 ms
41,348 KB
testcase_14 AC 127 ms
41,420 KB
testcase_15 AC 119 ms
40,024 KB
testcase_16 AC 125 ms
41,448 KB
testcase_17 AC 116 ms
40,192 KB
testcase_18 AC 131 ms
41,304 KB
testcase_19 AC 127 ms
41,136 KB
testcase_20 AC 129 ms
41,460 KB
testcase_21 AC 116 ms
39,908 KB
testcase_22 AC 130 ms
41,368 KB
testcase_23 AC 130 ms
41,304 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