結果

問題 No.627 ランダムウォークの軌跡
ユーザー GrenacheGrenache
提出日時 2018-01-06 12:28:09
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 878 bytes
コンパイル時間 3,163 ms
コンパイル使用メモリ 75,452 KB
実行使用メモリ 54,344 KB
最終ジャッジ日時 2024-06-02 11:26:38
合計ジャッジ時間 8,533 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,292 KB
testcase_01 AC 109 ms
40,720 KB
testcase_02 AC 121 ms
41,216 KB
testcase_03 AC 112 ms
41,304 KB
testcase_04 AC 117 ms
41,600 KB
testcase_05 AC 102 ms
40,056 KB
testcase_06 AC 113 ms
40,960 KB
testcase_07 AC 114 ms
41,164 KB
testcase_08 AC 107 ms
40,128 KB
testcase_09 AC 115 ms
41,276 KB
testcase_10 AC 120 ms
41,004 KB
testcase_11 AC 105 ms
40,320 KB
testcase_12 AC 107 ms
40,608 KB
testcase_13 AC 102 ms
39,976 KB
testcase_14 AC 108 ms
40,424 KB
testcase_15 AC 118 ms
41,128 KB
testcase_16 AC 115 ms
41,252 KB
testcase_17 AC 118 ms
41,092 KB
testcase_18 AC 109 ms
40,108 KB
testcase_19 AC 119 ms
41,296 KB
testcase_20 AC 119 ms
41,612 KB
testcase_21 AC 124 ms
41,228 KB
testcase_22 AC 120 ms
41,016 KB
testcase_23 AC 128 ms
41,628 KB
testcase_24 AC 127 ms
41,648 KB
testcase_25 AC 122 ms
41,340 KB
testcase_26 AC 125 ms
41,644 KB
testcase_27 AC 124 ms
41,380 KB
testcase_28 AC 126 ms
41,492 KB
testcase_29 WA -
testcase_30 AC 107 ms
40,812 KB
testcase_31 AC 106 ms
40,380 KB
testcase_32 AC 117 ms
40,896 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++) {
			int tmp = i + 1 - Math.abs(x[i]);
			if (tmp < 0) {
				flag = false;
				break;
			} else {
				if (tmp % 2 != 0) {
					flag = false;
					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