結果

問題 No.627 ランダムウォークの軌跡
ユーザー fal_rndfal_rnd
提出日時 2018-01-05 22:59:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 1,753 bytes
コンパイル時間 2,419 ms
コンパイル使用メモリ 86,936 KB
実行使用メモリ 41,700 KB
最終ジャッジ日時 2024-06-02 10:34:26
合計ジャッジ時間 7,178 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,240 KB
testcase_01 AC 124 ms
41,424 KB
testcase_02 AC 111 ms
40,264 KB
testcase_03 AC 118 ms
41,380 KB
testcase_04 AC 120 ms
41,324 KB
testcase_05 AC 111 ms
40,356 KB
testcase_06 AC 107 ms
39,608 KB
testcase_07 AC 114 ms
41,288 KB
testcase_08 AC 108 ms
40,432 KB
testcase_09 AC 111 ms
40,308 KB
testcase_10 AC 107 ms
40,108 KB
testcase_11 AC 110 ms
40,360 KB
testcase_12 AC 120 ms
41,300 KB
testcase_13 AC 124 ms
41,384 KB
testcase_14 AC 123 ms
41,292 KB
testcase_15 AC 119 ms
40,132 KB
testcase_16 AC 122 ms
41,332 KB
testcase_17 AC 122 ms
41,248 KB
testcase_18 AC 109 ms
40,204 KB
testcase_19 AC 112 ms
40,216 KB
testcase_20 AC 124 ms
41,372 KB
testcase_21 AC 127 ms
41,204 KB
testcase_22 AC 125 ms
41,660 KB
testcase_23 AC 122 ms
41,172 KB
testcase_24 AC 126 ms
41,672 KB
testcase_25 AC 123 ms
41,496 KB
testcase_26 AC 118 ms
40,780 KB
testcase_27 AC 124 ms
41,700 KB
testcase_28 AC 121 ms
41,208 KB
testcase_29 AC 128 ms
41,644 KB
testcase_30 AC 112 ms
40,892 KB
testcase_31 AC 113 ms
41,016 KB
testcase_32 AC 104 ms
40,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.InputStream;
import java.io.PrintWriter;
import java.util.Iterator;
import java.util.PrimitiveIterator;
import java.util.Scanner;
import java.util.stream.IntStream;
import java.util.stream.Stream;

class Main_Util{
	private void solve(){
		int n=gInt();
		int[]in=ints(n).toArray();
		if(Math.abs(in[0])!=1){
			System.out.println('F');
			return;
		}
		for(int i:rep(n-1)) {
			if(Math.abs(in[i]-in[i+1])!=1) {
				System.out.println('F');
				return;
			}
		}
		System.out.println('T');
	}

	public static void main(String[]$){
		new Main_Util().solve();
		System.out.flush();
	}

	static class System{
		private static final InputStream in=java.lang.System.in;
		private static final PrintWriter out=new PrintWriter(java.lang.System.out,false);
	}
	static Scanner s=new Scanner(System.in);

	static int gInt(){
		return s.nextInt();
	}
	static long gLong(){
		return s.nextLong();
	}
	static long gDouble(){
		return s.nextLong();
	}

	static Range rep(int i){
		return new Range(i);
	}
	static Range rep(int f,int t){
		return new Range(f,t);
	}
	static class Range implements Iterable<Integer>,PrimitiveIterator.OfInt{
		int from,to,c;
		Range(int from,int to){
			this.from=from;
			this.to=to;
			this.c=from;
		}
		Range(int n){
			this(0,n-1);
		}
		@Override
		public Iterator<Integer> iterator(){
			return this;
		}
		@Override
		public boolean hasNext(){
			return c<=to;
		}
		@Override
		public int nextInt(){
			return c++;
		}
	}

	static IntStream REPS(int v){
		return IntStream.range(0,v);
	}
	static IntStream REPS(int l,int r){
		return IntStream.rangeClosed(l,r);
	}

	static IntStream ints(int n){
		return REPS(n).map(i->gInt());
	}
	static Stream<String> strs(int n){
		return REPS(n).mapToObj(i->s.next());
	}
}
0