"SWEA 17319 문자열문자열"의 두 판 사이의 차이

1번째 줄: 1번째 줄:
==개요==
==개요==
{{SWEA|난이도=2}}
{{SWEA|난이도=3}}


==Java==
==Java==

2023년 8월 26일 (토) 01:47 판

1 개요

SWEA 17319 문자열문자열

2 Java

import java.util.Scanner;
import java.io.FileInputStream;

class Solution {
    public static void main(String args[]) throws Exception {
        Scanner sc = new Scanner(System.in);
        int T;
        T = sc.nextInt();
        for (int test_case = 1; test_case <= T; test_case++) {
            int N = sc.nextInt();
            String str_input = sc.next();
            if (N % 2 == 1) {
                System.out.format("#%d No\n", test_case);
            } else {
                if (str_input.substring(N / 2).equals(str_input.substring(0, N / 2))) {
                    System.out.format("#%d Yes\n", test_case);
                } else {
                    System.out.format("#%d No\n", test_case);
                }
            }
        }
    }
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}