結果

問題 No.739 大事なことなので2度言います
ユーザー Yosuke YamaguchiYosuke Yamaguchi
提出日時 2021-01-16 20:26:36
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 518 bytes
コンパイル時間 3,059 ms
コンパイル使用メモリ 74,336 KB
実行使用メモリ 41,300 KB
最終ジャッジ日時 2024-05-06 00:42:40
合計ジャッジ時間 4,888 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
40,840 KB
testcase_01 WA -
testcase_02 AC 88 ms
39,520 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 94 ms
40,072 KB
testcase_07 WA -
testcase_08 AC 95 ms
40,644 KB
testcase_09 WA -
testcase_10 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

// https://yukicoder.me/problems/no/739
public class TwoTimes739 {
  public static void main(String[] args) {
    // 標準入力から読み込む際に、Scan
    Scanner sc = new Scanner(System.in);

    // String 1つ分を読み込む
    String s = sc.next();
    String s1 = s.substring(0, s.length() / 2);
    String s2 = s.substring(s.length() / 2 + 1, s.length());
    if (s1.equals(s2)) {
      System.out.println("YES");
    } else {
      System.out.println("NO");
    }
  }
}
0