結果

問題 No.739 大事なことなので2度言います
ユーザー Mcpu3Mcpu3
提出日時 2018-10-06 00:07:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 571 bytes
コンパイル時間 2,159 ms
コンパイル使用メモリ 74,440 KB
実行使用メモリ 41,664 KB
最終ジャッジ日時 2024-11-20 16:51:36
合計ジャッジ時間 4,235 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,156 KB
testcase_01 AC 129 ms
41,360 KB
testcase_02 AC 127 ms
41,408 KB
testcase_03 AC 129 ms
41,228 KB
testcase_04 AC 126 ms
41,008 KB
testcase_05 AC 128 ms
41,000 KB
testcase_06 AC 115 ms
40,396 KB
testcase_07 AC 126 ms
41,268 KB
testcase_08 AC 128 ms
41,036 KB
testcase_09 AC 127 ms
41,664 KB
testcase_10 AC 127 ms
41,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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