結果

問題 No.163 cAPSlOCK
ユーザー shinwisteriashinwisteria
提出日時 2017-03-18 18:46:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 449 bytes
コンパイル時間 3,205 ms
コンパイル使用メモリ 75,012 KB
実行使用メモリ 41,740 KB
最終ジャッジ日時 2024-07-04 19:19:20
合計ジャッジ時間 6,867 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,164 KB
testcase_01 AC 128 ms
41,372 KB
testcase_02 AC 125 ms
41,048 KB
testcase_03 AC 125 ms
41,100 KB
testcase_04 AC 124 ms
41,332 KB
testcase_05 AC 123 ms
41,188 KB
testcase_06 AC 118 ms
41,296 KB
testcase_07 AC 119 ms
41,140 KB
testcase_08 AC 119 ms
41,040 KB
testcase_09 AC 107 ms
40,916 KB
testcase_10 AC 104 ms
41,280 KB
testcase_11 AC 123 ms
41,028 KB
testcase_12 AC 125 ms
41,368 KB
testcase_13 AC 110 ms
41,740 KB
testcase_14 AC 126 ms
41,200 KB
testcase_15 AC 121 ms
40,864 KB
testcase_16 AC 121 ms
40,808 KB
testcase_17 AC 122 ms
41,084 KB
testcase_18 AC 125 ms
41,224 KB
testcase_19 AC 121 ms
41,088 KB
testcase_20 AC 110 ms
41,132 KB
testcase_21 AC 108 ms
41,228 KB
testcase_22 AC 122 ms
41,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Capslock {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		StringBuilder str = new StringBuilder(s.nextLine());
		s.close();
		
		for(int i = 0;i < str.length();i++){
			char c = str.charAt(i);
			if(Character.isUpperCase(c)){
				str.setCharAt(i,Character.toLowerCase(c));
			}else{
				str.setCharAt(i, Character.toUpperCase(c));
			}
		}
		System.out.println(str);

	}

}
0