結果

問題 No.627 ランダムウォークの軌跡
ユーザー GrenacheGrenache
提出日時 2018-01-06 12:31:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 1,072 bytes
コンパイル時間 3,435 ms
コンパイル使用メモリ 77,916 KB
実行使用メモリ 41,928 KB
最終ジャッジ日時 2024-06-02 11:26:59
合計ジャッジ時間 8,500 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,276 KB
testcase_01 AC 105 ms
41,264 KB
testcase_02 AC 110 ms
39,976 KB
testcase_03 AC 113 ms
40,768 KB
testcase_04 AC 123 ms
41,496 KB
testcase_05 AC 111 ms
40,432 KB
testcase_06 AC 119 ms
41,224 KB
testcase_07 AC 119 ms
41,288 KB
testcase_08 AC 122 ms
41,328 KB
testcase_09 AC 112 ms
40,476 KB
testcase_10 AC 123 ms
41,372 KB
testcase_11 AC 125 ms
41,356 KB
testcase_12 AC 126 ms
41,348 KB
testcase_13 AC 114 ms
41,244 KB
testcase_14 AC 133 ms
41,540 KB
testcase_15 AC 128 ms
41,928 KB
testcase_16 AC 114 ms
40,768 KB
testcase_17 AC 119 ms
40,384 KB
testcase_18 AC 120 ms
41,596 KB
testcase_19 AC 131 ms
41,572 KB
testcase_20 AC 120 ms
40,948 KB
testcase_21 AC 130 ms
41,464 KB
testcase_22 AC 125 ms
41,380 KB
testcase_23 AC 128 ms
41,776 KB
testcase_24 AC 127 ms
41,700 KB
testcase_25 AC 125 ms
41,396 KB
testcase_26 AC 131 ms
41,900 KB
testcase_27 AC 132 ms
41,808 KB
testcase_28 AC 129 ms
41,444 KB
testcase_29 AC 128 ms
41,688 KB
testcase_30 AC 108 ms
41,232 KB
testcase_31 AC 106 ms
41,324 KB
testcase_32 AC 122 ms
41,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder627 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int t = sc.nextInt();

		int[] x = new int[t];
		for (int i = 0; i < t; i++) {
			x[i] = sc.nextInt();
		}

		boolean flag = true;
		for (int i = 0; i < t; i++) {
			if (i > 0) {
				if (Math.abs(x[i] - x[i - 1]) != 1) {
					flag = false;
					break;
				}
			}

			int tmp = i + 1 - Math.abs(x[i]);
			if (tmp < 0) {
				flag = false;
//				pr.printf("%d %d %d\n", i, x[i], tmp);
				break;
			} else {
				if (tmp % 2 != 0) {
					flag = false;
//					pr.printf("  %d %d %d\n", i, x[i], tmp);
					break;
				}
			}
		}

		if (flag) {
			pr.println("T");
		} else {
			pr.println("F");
		}
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0