結果

問題 No.739 大事なことなので2度言います
ユーザー Pump0129Pump0129
提出日時 2018-11-27 23:43:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 470 bytes
コンパイル時間 2,432 ms
コンパイル使用メモリ 74,092 KB
実行使用メモリ 41,540 KB
最終ジャッジ日時 2024-06-24 19:30:28
合計ジャッジ時間 4,731 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,300 KB
testcase_01 AC 128 ms
41,484 KB
testcase_02 AC 129 ms
41,540 KB
testcase_03 AC 129 ms
41,156 KB
testcase_04 AC 129 ms
41,284 KB
testcase_05 AC 116 ms
40,408 KB
testcase_06 AC 126 ms
41,192 KB
testcase_07 AC 127 ms
41,344 KB
testcase_08 AC 128 ms
41,200 KB
testcase_09 AC 125 ms
41,036 KB
testcase_10 AC 124 ms
41,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package net.ipipip0129.yukicoder.No739;

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        String scan_str = scan.nextLine();

        boolean ans = scan_str.length() % 2 == 0 &&
                scan_str.substring(0, scan_str.length() / 2)
                .equalsIgnoreCase(scan_str.substring(scan_str.length() / 2));
        System.out.println(ans? "YES" : "NO");
    }
}
0