結果

問題 No.739 大事なことなので2度言います
ユーザー tentententen
提出日時 2020-12-09 09:21:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 557 bytes
コンパイル時間 2,237 ms
コンパイル使用メモリ 74,248 KB
実行使用メモリ 41,320 KB
最終ジャッジ日時 2024-09-19 01:03:17
合計ジャッジ時間 4,336 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
40,108 KB
testcase_01 AC 130 ms
41,096 KB
testcase_02 AC 129 ms
41,320 KB
testcase_03 AC 130 ms
41,044 KB
testcase_04 AC 125 ms
40,960 KB
testcase_05 AC 115 ms
40,212 KB
testcase_06 AC 131 ms
40,760 KB
testcase_07 AC 129 ms
41,312 KB
testcase_08 AC 129 ms
40,780 KB
testcase_09 AC 129 ms
41,076 KB
testcase_10 AC 116 ms
39,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        char[] arr = sc.next().toCharArray();
        if (arr.length % 2 == 0) {
            for (int i = 0; i < arr.length / 2; i++) {
                if (arr[i] != arr[arr.length / 2 + i]) {
                    System.out.println("NO");
                    return;
                }
            }
        } else {
            System.out.println("NO");
            return;
        }
        System.out.println("YES");
    }
}
0