結果

問題 No.739 大事なことなので2度言います
ユーザー yukiyuki
提出日時 2020-08-18 09:58:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 487 bytes
コンパイル時間 2,639 ms
コンパイル使用メモリ 74,268 KB
実行使用メモリ 54,140 KB
最終ジャッジ日時 2024-10-12 00:25:48
合計ジャッジ時間 4,553 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,128 KB
testcase_01 AC 127 ms
54,044 KB
testcase_02 AC 125 ms
54,104 KB
testcase_03 AC 126 ms
54,140 KB
testcase_04 AC 128 ms
53,740 KB
testcase_05 AC 127 ms
53,908 KB
testcase_06 AC 126 ms
53,912 KB
testcase_07 AC 126 ms
54,116 KB
testcase_08 AC 128 ms
53,908 KB
testcase_09 AC 127 ms
53,836 KB
testcase_10 AC 127 ms
54,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.Scanner;

public class Main {
	public static void main (String[] args) {
		Scanner in = new Scanner(System.in);
		String N = in.next();
        String w1 = N.substring(0, N.length()/2 );
        String w2 = N.substring(N.length()/2);
        
        if(N.length() % 2 != 0){
    		System.out.println("NO");
        }else if(w1.equals(w2)){
    		System.out.println("YES");            
        }else{
    		System.out.println("NO");
        }
   }

}
0