結果

問題 No.1149 色塗りゲーム
ユーザー ks2mks2m
提出日時 2020-08-07 21:33:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 318 ms / 2,000 ms
コード長 552 bytes
コンパイル時間 2,235 ms
コンパイル使用メモリ 76,408 KB
実行使用メモリ 73,208 KB
平均クエリ数 19.82
最終ジャッジ日時 2024-07-17 04:17:14
合計ジャッジ時間 17,261 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 189 ms
69,404 KB
testcase_01 AC 192 ms
69,852 KB
testcase_02 AC 189 ms
69,204 KB
testcase_03 AC 190 ms
69,792 KB
testcase_04 AC 193 ms
69,616 KB
testcase_05 AC 203 ms
70,692 KB
testcase_06 AC 193 ms
69,652 KB
testcase_07 AC 194 ms
70,084 KB
testcase_08 AC 205 ms
69,936 KB
testcase_09 AC 195 ms
69,688 KB
testcase_10 AC 194 ms
70,092 KB
testcase_11 AC 208 ms
70,836 KB
testcase_12 AC 210 ms
70,640 KB
testcase_13 AC 212 ms
70,828 KB
testcase_14 AC 201 ms
70,024 KB
testcase_15 AC 198 ms
69,836 KB
testcase_16 AC 200 ms
69,992 KB
testcase_17 AC 215 ms
71,028 KB
testcase_18 AC 198 ms
69,660 KB
testcase_19 AC 211 ms
70,632 KB
testcase_20 AC 203 ms
69,548 KB
testcase_21 AC 216 ms
70,952 KB
testcase_22 AC 202 ms
69,224 KB
testcase_23 AC 212 ms
70,768 KB
testcase_24 AC 215 ms
70,800 KB
testcase_25 AC 204 ms
69,996 KB
testcase_26 AC 205 ms
69,908 KB
testcase_27 AC 200 ms
69,712 KB
testcase_28 AC 219 ms
70,892 KB
testcase_29 AC 208 ms
69,804 KB
testcase_30 AC 275 ms
70,464 KB
testcase_31 AC 272 ms
70,696 KB
testcase_32 AC 277 ms
70,972 KB
testcase_33 AC 278 ms
70,348 KB
testcase_34 AC 281 ms
70,776 KB
testcase_35 AC 270 ms
70,624 KB
testcase_36 AC 293 ms
70,676 KB
testcase_37 AC 285 ms
70,332 KB
testcase_38 AC 282 ms
70,556 KB
testcase_39 AC 286 ms
70,972 KB
testcase_40 AC 298 ms
70,708 KB
testcase_41 AC 295 ms
70,896 KB
testcase_42 AC 293 ms
70,920 KB
testcase_43 AC 291 ms
70,924 KB
testcase_44 AC 303 ms
73,208 KB
testcase_45 AC 303 ms
71,156 KB
testcase_46 AC 305 ms
70,528 KB
testcase_47 AC 305 ms
70,776 KB
testcase_48 AC 311 ms
70,612 KB
testcase_49 AC 318 ms
70,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		if (n % 2 == 0) {
			System.out.println("2 " + (n / 2));
		} else {
			System.out.println("1 " + (n / 2 + 1));
		}
		while (true) {
			int t = sc.nextInt();
			if (t != 3) {
				break;
			}
			int k = sc.nextInt();
			int x = sc.nextInt();
			if (k == 1) {
				System.out.println("1 " + (n + 1 - x));
			} else {
				System.out.println("2 " + (n - x));
			}
		}
		sc.close();
	}
}
0