結果

問題 No.163 cAPSlOCK
ユーザー HEGO55HEGO55
提出日時 2017-05-27 12:40:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 392 bytes
コンパイル時間 2,182 ms
コンパイル使用メモリ 74,780 KB
実行使用メモリ 54,432 KB
最終ジャッジ日時 2024-09-21 14:31:37
合計ジャッジ時間 6,177 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
53,720 KB
testcase_01 AC 128 ms
54,000 KB
testcase_02 AC 126 ms
54,144 KB
testcase_03 AC 136 ms
54,316 KB
testcase_04 AC 132 ms
53,828 KB
testcase_05 AC 128 ms
53,936 KB
testcase_06 AC 128 ms
53,916 KB
testcase_07 AC 136 ms
54,092 KB
testcase_08 AC 137 ms
54,060 KB
testcase_09 AC 135 ms
54,072 KB
testcase_10 AC 131 ms
54,264 KB
testcase_11 AC 128 ms
53,916 KB
testcase_12 AC 132 ms
54,208 KB
testcase_13 AC 133 ms
54,012 KB
testcase_14 AC 133 ms
54,276 KB
testcase_15 AC 134 ms
54,076 KB
testcase_16 AC 133 ms
54,236 KB
testcase_17 AC 135 ms
53,912 KB
testcase_18 AC 129 ms
54,312 KB
testcase_19 AC 128 ms
54,240 KB
testcase_20 AC 138 ms
54,028 KB
testcase_21 AC 130 ms
54,072 KB
testcase_22 AC 137 ms
54,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class No163{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		String str = sc.next();
		char[] c = str.toCharArray();
		
		
		for(int i=0; i<c.length; i++){
			if((int)c[i]>=97 && (int)c[i]<=122){
				System.out.print(String.valueOf(c[i]).toUpperCase());
			}else{
				System.out.print(String.valueOf(c[i]).toLowerCase());
			}
		}
	}
}
0