結果

問題 No.739 大事なことなので2度言います
ユーザー Yosuke YamaguchiYosuke Yamaguchi
提出日時 2021-01-16 21:57:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 515 bytes
コンパイル時間 4,018 ms
コンパイル使用メモリ 75,272 KB
実行使用メモリ 41,572 KB
最終ジャッジ日時 2024-05-06 02:14:40
合計ジャッジ時間 6,450 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,048 KB
testcase_01 AC 118 ms
41,572 KB
testcase_02 AC 122 ms
41,528 KB
testcase_03 AC 124 ms
41,044 KB
testcase_04 AC 123 ms
41,304 KB
testcase_05 AC 111 ms
41,080 KB
testcase_06 AC 123 ms
41,160 KB
testcase_07 AC 123 ms
41,548 KB
testcase_08 AC 121 ms
40,952 KB
testcase_09 AC 120 ms
40,880 KB
testcase_10 AC 121 ms
41,316 KB
権限があれば一括ダウンロードができます

ソースコード

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, s.length());

    if (s1.equals(s2)) {
      System.out.println("YES");
    } else {
      System.out.println("NO");
    }
  }
}
0