結果

問題 No.739 大事なことなので2度言います
ユーザー hhgfhn1hhgfhn1
提出日時 2018-10-05 21:28:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 409 bytes
コンパイル時間 2,156 ms
コンパイル使用メモリ 74,944 KB
実行使用メモリ 54,280 KB
最終ジャッジ日時 2024-11-20 16:39:01
合計ジャッジ時間 4,570 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
53,996 KB
testcase_01 AC 126 ms
54,016 KB
testcase_02 AC 126 ms
53,852 KB
testcase_03 AC 129 ms
54,280 KB
testcase_04 AC 130 ms
54,136 KB
testcase_05 AC 128 ms
54,040 KB
testcase_06 AC 130 ms
54,092 KB
testcase_07 AC 129 ms
54,140 KB
testcase_08 AC 129 ms
54,036 KB
testcase_09 AC 128 ms
53,960 KB
testcase_10 AC 130 ms
54,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	@SuppressWarnings("resource")
	public static void main(String args[]) {
		Scanner scanner = new Scanner(System.in);
		String s=scanner.next();
		
		for(int i=1;i<=s.length();i++) {
			String s1=s.substring(0,i);
			String s2=s.substring(i,s.length());
			if(s1.equals(s2)) {
				System.out.println("YES");
				return;
			}
		}
		System.out.println("NO");
	}
}
0