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

10번째 줄: 10번째 줄:
     public static void main(String args[]) throws Exception {
     public static void main(String args[]) throws Exception {
         Scanner sc = new Scanner(System.in);
         Scanner sc = new Scanner(System.in);
         int T;
         int TC;
         T = sc.nextInt();
         TC = sc.nextInt();
         for (int test_case = 1; test_case <= T; test_case++) {
         for (int test_case = 1; test_case <= T; test_case++) {
             int N = sc.nextInt();
             int N = sc.nextInt();
             String str_input = sc.next();
             String S = sc.next();
             if (N % 2 == 1) {
             if (N % 2 == 1) {
                 System.out.format("#%d No\n", test_case);
                 System.out.format("#%d No\n", test_case);
             } else {
             } else {
                 if (str_input.substring(N / 2).equals(str_input.substring(0, N / 2))) {
                 if (S.substring(N / 2).equals(S.substring(0, N / 2))) {
                     System.out.format("#%d Yes\n", test_case);
                     System.out.format("#%d Yes\n", test_case);
                 } else {
                 } else {

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

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 TC;
        TC = sc.nextInt();
        for (int test_case = 1; test_case <= T; test_case++) {
            int N = sc.nextInt();
            String S = sc.next();
            if (N % 2 == 1) {
                System.out.format("#%d No\n", test_case);
            } else {
                if (S.substring(N / 2).equals(S.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 }}