結果

問題 No.163 cAPSlOCK
ユーザー ちよちゃんちよちゃん
提出日時 2016-05-25 14:11:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 735 bytes
コンパイル時間 3,604 ms
コンパイル使用メモリ 74,520 KB
実行使用メモリ 54,456 KB
最終ジャッジ日時 2024-10-07 14:05:20
合計ジャッジ時間 7,550 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,328 KB
testcase_01 AC 126 ms
53,900 KB
testcase_02 AC 127 ms
54,060 KB
testcase_03 AC 138 ms
53,892 KB
testcase_04 AC 137 ms
54,324 KB
testcase_05 AC 128 ms
54,288 KB
testcase_06 AC 127 ms
53,980 KB
testcase_07 AC 136 ms
54,208 KB
testcase_08 AC 137 ms
54,096 KB
testcase_09 AC 139 ms
54,044 KB
testcase_10 AC 132 ms
54,256 KB
testcase_11 AC 128 ms
54,084 KB
testcase_12 AC 137 ms
54,320 KB
testcase_13 AC 138 ms
53,828 KB
testcase_14 AC 137 ms
54,144 KB
testcase_15 AC 135 ms
54,456 KB
testcase_16 AC 140 ms
53,884 KB
testcase_17 AC 133 ms
54,092 KB
testcase_18 AC 129 ms
54,248 KB
testcase_19 AC 128 ms
54,100 KB
testcase_20 AC 128 ms
53,988 KB
testcase_21 AC 128 ms
54,196 KB
testcase_22 AC 135 ms
53,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class Yuki163 {
	
	public static void main(String[] args) {
		
		Scanner scan = new Scanner(System.in);
		String str = scan.next();
		scan.close();
		String[] strarr = str.split("");
		String bigEng = "[A-Z]";
		String smallEng = "[a-z]";
		Pattern p1 = Pattern.compile(bigEng);
		Pattern p2 = Pattern.compile(smallEng);
		
		for (int i = 0; i < strarr.length; i++ ){
			Matcher m = p1.matcher(strarr[i]);
			Matcher m1 = p2.matcher(strarr[i]);

			if(m.find()){
				strarr[i] = strarr[i].toLowerCase();
			}else if(m1.find()){
				strarr[i] = strarr[i].toUpperCase();
			}
		    System.out.print(strarr[i]);
		}
	}
}
0