結果

問題 No.163 cAPSlOCK
ユーザー fal_rndfal_rnd
提出日時 2016-10-28 07:53:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 5,000 ms
コード長 442 bytes
コンパイル時間 2,191 ms
コンパイル使用メモリ 74,764 KB
実行使用メモリ 41,664 KB
最終ジャッジ日時 2024-11-24 05:02:37
合計ジャッジ時間 6,030 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
40,980 KB
testcase_01 AC 127 ms
40,944 KB
testcase_02 AC 126 ms
41,024 KB
testcase_03 AC 141 ms
41,280 KB
testcase_04 AC 128 ms
41,308 KB
testcase_05 AC 125 ms
40,980 KB
testcase_06 AC 110 ms
40,044 KB
testcase_07 AC 128 ms
41,104 KB
testcase_08 AC 131 ms
41,064 KB
testcase_09 AC 128 ms
40,904 KB
testcase_10 AC 124 ms
41,188 KB
testcase_11 AC 124 ms
41,664 KB
testcase_12 AC 127 ms
40,916 KB
testcase_13 AC 130 ms
41,136 KB
testcase_14 AC 129 ms
41,116 KB
testcase_15 AC 128 ms
41,224 KB
testcase_16 AC 131 ms
41,216 KB
testcase_17 AC 129 ms
41,380 KB
testcase_18 AC 129 ms
40,856 KB
testcase_19 AC 125 ms
41,068 KB
testcase_20 AC 125 ms
41,016 KB
testcase_21 AC 127 ms
40,972 KB
testcase_22 AC 138 ms
41,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.regex.*;
class A{
	static Scanner s = new Scanner(System.in);
	public static void main(String[] args){
		StringBuilder sb = new StringBuilder(101);
		Matcher m = Pattern.compile("([a-z]+|[A-Z]+)").matcher(s.next());
		while(m.find()){
			String st = m.group();
			if(st.matches("[a-z]+")){
				sb.append(st.toUpperCase());
			}else{
				sb.append(st.toLowerCase());
			}
		}
		System.out.println(sb);
	}
}
0