結果

問題 No.627 ランダムウォークの軌跡
ユーザー Pump0129Pump0129
提出日時 2018-03-26 17:56:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 583 bytes
コンパイル時間 1,847 ms
コンパイル使用メモリ 74,504 KB
実行使用メモリ 41,516 KB
最終ジャッジ日時 2024-06-25 06:50:25
合計ジャッジ時間 6,872 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
40,072 KB
testcase_01 AC 119 ms
41,296 KB
testcase_02 AC 99 ms
39,572 KB
testcase_03 AC 118 ms
41,480 KB
testcase_04 AC 108 ms
40,060 KB
testcase_05 AC 117 ms
41,516 KB
testcase_06 AC 119 ms
41,472 KB
testcase_07 AC 113 ms
40,696 KB
testcase_08 AC 119 ms
41,232 KB
testcase_09 AC 103 ms
39,888 KB
testcase_10 AC 118 ms
41,104 KB
testcase_11 AC 118 ms
41,156 KB
testcase_12 AC 113 ms
40,624 KB
testcase_13 AC 116 ms
41,296 KB
testcase_14 AC 117 ms
41,376 KB
testcase_15 AC 119 ms
41,128 KB
testcase_16 AC 118 ms
41,364 KB
testcase_17 AC 138 ms
41,328 KB
testcase_18 AC 122 ms
41,268 KB
testcase_19 AC 111 ms
40,088 KB
testcase_20 AC 126 ms
41,488 KB
testcase_21 AC 119 ms
41,104 KB
testcase_22 AC 121 ms
41,072 KB
testcase_23 AC 119 ms
41,192 KB
testcase_24 AC 126 ms
41,372 KB
testcase_25 AC 122 ms
41,408 KB
testcase_26 AC 128 ms
41,460 KB
testcase_27 AC 122 ms
41,108 KB
testcase_28 AC 128 ms
41,224 KB
testcase_29 AC 108 ms
39,900 KB
testcase_30 AC 119 ms
41,016 KB
testcase_31 AC 119 ms
40,868 KB
testcase_32 AC 110 ms
40,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package net.ipipip0129.yukicoder.no627;

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int cnt = Integer.parseInt(scan.nextLine());
		
		int revnum = 0;
		boolean isend = false;
		for (int i = 0; i < cnt; i++) {
			int num = Integer.parseInt(scan.nextLine());
			if ((revnum - num) * (revnum - num) != 1) {
				System.out.println("F");
				isend = true;
				break;
			}
			revnum = num;
		}
		
		scan.close();
		
		if(!isend) {
			System.out.println("T");
		}
		
	}
}
0