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

3번째 줄: 3번째 줄:


==Java==
==Java==
<syntaxhighlight lang='java'>
import java.util.Scanner;
import java.util.Scanner;
import java.io.FileInputStream;
import java.io.FileInputStream;
10번째 줄: 9번째 줄:
     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 TC;
         int TC = sc.nextInt();
        TC = sc.nextInt();
         for (int testcase = 1; testcase <= TC; testcase++) {
         for (int test_case = 1; test_case <= T; test_case++) {
             int N = sc.nextInt();
             int N = sc.nextInt();
             String S = sc.next();
             String S = sc.next();
             if (N % 2 == 1) {
             if (N % 2 != 1 && S.substring(N / 2).equals(S.substring(0, N / 2))) {
                System.out.format("#%d No\n", test_case);
System.out.format("#%d Yes\n", testcase);
            } else {
                 continue;
                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);
                }
             }
             }
            System.out.format("#%d No\n", testcase);
         }
         }
     }
     }
}
}
</syntaxhighlight>
</syntaxhighlight>

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

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 = sc.nextInt();
       for (int testcase = 1; testcase <= TC; testcase++) {
           int N = sc.nextInt();
           String S = sc.next();
           if (N % 2 != 1 && S.substring(N / 2).equals(S.substring(0, N / 2))) {

System.out.format("#%d Yes\n", testcase);

               continue;
           }
           System.out.format("#%d No\n", testcase);
       }
   }

} </syntaxhighlight>

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}