結果

問題 No.627 ランダムウォークの軌跡
ユーザー sudo_yumsudo_yum
提出日時 2018-05-25 12:45:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 687 bytes
コンパイル時間 1,722 ms
コンパイル使用メモリ 74,364 KB
実行使用メモリ 42,152 KB
最終ジャッジ日時 2024-06-28 17:55:46
合計ジャッジ時間 6,925 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,452 KB
testcase_01 AC 120 ms
41,880 KB
testcase_02 AC 112 ms
41,372 KB
testcase_03 AC 101 ms
39,848 KB
testcase_04 AC 102 ms
41,464 KB
testcase_05 AC 100 ms
41,304 KB
testcase_06 AC 113 ms
41,488 KB
testcase_07 AC 104 ms
41,496 KB
testcase_08 AC 117 ms
41,340 KB
testcase_09 AC 121 ms
41,880 KB
testcase_10 AC 114 ms
41,284 KB
testcase_11 AC 114 ms
41,040 KB
testcase_12 AC 117 ms
41,588 KB
testcase_13 AC 116 ms
40,284 KB
testcase_14 AC 106 ms
41,600 KB
testcase_15 AC 132 ms
41,668 KB
testcase_16 AC 130 ms
41,800 KB
testcase_17 AC 119 ms
41,232 KB
testcase_18 AC 107 ms
41,096 KB
testcase_19 AC 122 ms
42,152 KB
testcase_20 AC 125 ms
41,432 KB
testcase_21 AC 115 ms
41,608 KB
testcase_22 AC 119 ms
41,560 KB
testcase_23 AC 125 ms
42,152 KB
testcase_24 AC 118 ms
41,568 KB
testcase_25 AC 120 ms
41,268 KB
testcase_26 AC 118 ms
41,328 KB
testcase_27 AC 125 ms
41,668 KB
testcase_28 AC 122 ms
41,912 KB
testcase_29 AC 122 ms
41,792 KB
testcase_30 AC 104 ms
41,436 KB
testcase_31 AC 99 ms
41,140 KB
testcase_32 AC 112 ms
41,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
  static StringBuilder sb = new StringBuilder("");
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int T = sc.nextInt();
    int[] x = new int[T];
    for (int i=0;i<T ;i++ ) {
      x[i]=sc.nextInt();
    }
    sc.close();
    if (x[0]==0) {
      System.out.println("F");
      System.exit(0);
    }
    if (T==1) {
      if (!(x[0]==1||x[0]==-1)) {
        System.out.println("F");
        System.exit(0);
      }
    }
    for (int i=0;i<T-1 ;i++ ) {
      int k =x[i+1]-x[i];
      if (k*k!=1) {
        System.out.println("F");
        System.exit(0);
      }
    }
    System.out.println("T");
  }
}
0