結果

問題 No.163 cAPSlOCK
ユーザー DevbotBotDevbotBot
提出日時 2015-06-24 16:03:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 112 ms / 5,000 ms
コード長 420 bytes
コンパイル時間 2,980 ms
コンパイル使用メモリ 77,656 KB
実行使用メモリ 54,128 KB
最終ジャッジ日時 2024-07-07 17:25:32
合計ジャッジ時間 5,969 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
52,644 KB
testcase_01 AC 97 ms
52,516 KB
testcase_02 AC 106 ms
54,112 KB
testcase_03 AC 111 ms
54,076 KB
testcase_04 AC 97 ms
52,788 KB
testcase_05 AC 106 ms
53,864 KB
testcase_06 AC 110 ms
53,760 KB
testcase_07 AC 111 ms
53,940 KB
testcase_08 AC 97 ms
52,668 KB
testcase_09 AC 94 ms
52,636 KB
testcase_10 AC 101 ms
53,456 KB
testcase_11 AC 106 ms
54,060 KB
testcase_12 AC 97 ms
52,808 KB
testcase_13 AC 91 ms
52,544 KB
testcase_14 AC 108 ms
54,128 KB
testcase_15 AC 108 ms
53,928 KB
testcase_16 AC 108 ms
53,716 KB
testcase_17 AC 105 ms
53,124 KB
testcase_18 AC 108 ms
54,064 KB
testcase_19 AC 108 ms
53,924 KB
testcase_20 AC 112 ms
53,932 KB
testcase_21 AC 108 ms
54,084 KB
testcase_22 AC 110 ms
53,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class No163 {
    public static void main(String[] arg){
		Scanner sc = new Scanner(System.in);
		char[] s = sc.next().toCharArray();
		String j ;
		for(int i = 0; i < s.length; i++){
			j = String.valueOf(s[i]);
			if (j.matches( "[a-z]+" )){
				j = j.toUpperCase();
				s[i] = j.charAt(0);
			} else {
				j = j.toLowerCase();
				s[i] = j.charAt(0);
			}
		}
		System.out.println(s);
		}
}
0