結果

問題 No.163 cAPSlOCK
ユーザー kuramukuramu
提出日時 2016-01-19 17:04:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 58 ms / 5,000 ms
コード長 670 bytes
コンパイル時間 2,085 ms
コンパイル使用メモリ 74,948 KB
実行使用メモリ 50,460 KB
最終ジャッジ日時 2024-09-21 08:02:23
合計ジャッジ時間 4,770 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
50,172 KB
testcase_01 AC 55 ms
50,436 KB
testcase_02 AC 57 ms
50,268 KB
testcase_03 AC 56 ms
50,160 KB
testcase_04 AC 57 ms
50,128 KB
testcase_05 AC 56 ms
50,128 KB
testcase_06 AC 58 ms
50,308 KB
testcase_07 AC 56 ms
50,460 KB
testcase_08 AC 56 ms
50,060 KB
testcase_09 AC 56 ms
50,184 KB
testcase_10 AC 56 ms
50,020 KB
testcase_11 AC 55 ms
50,152 KB
testcase_12 AC 57 ms
50,040 KB
testcase_13 AC 55 ms
50,244 KB
testcase_14 AC 55 ms
49,964 KB
testcase_15 AC 55 ms
50,276 KB
testcase_16 AC 57 ms
50,352 KB
testcase_17 AC 55 ms
49,904 KB
testcase_18 AC 55 ms
50,372 KB
testcase_19 AC 54 ms
50,020 KB
testcase_20 AC 56 ms
49,948 KB
testcase_21 AC 56 ms
50,144 KB
testcase_22 AC 56 ms
50,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.lang.Character;
public class Main {

	public static void main(String[] args) throws IOException {
		BufferedReader stdReader =new BufferedReader(new InputStreamReader(System.in));
		char [] chars = stdReader.readLine().toCharArray();
		StringBuilder sb = new StringBuilder();
		
		for(int i=0;i<chars.length;i++){
			if(Character.isUpperCase(chars[i])){
				chars[i] = Character.toLowerCase(chars[i]);
			}else{
				chars[i] = Character.toUpperCase(chars[i]);
			}
			sb.append(chars[i]);
		}			
		System.out.println(sb.toString());
	}
}
0