結果

問題 No.163 cAPSlOCK
ユーザー CavasiroCavasiro
提出日時 2020-04-15 01:30:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 422 bytes
コンパイル時間 2,078 ms
コンパイル使用メモリ 74,444 KB
実行使用メモリ 41,660 KB
最終ジャッジ日時 2024-10-01 18:32:45
合計ジャッジ時間 5,920 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,020 KB
testcase_01 AC 126 ms
41,272 KB
testcase_02 AC 126 ms
41,320 KB
testcase_03 AC 129 ms
41,040 KB
testcase_04 AC 127 ms
41,244 KB
testcase_05 AC 118 ms
40,020 KB
testcase_06 AC 125 ms
41,084 KB
testcase_07 AC 124 ms
41,168 KB
testcase_08 AC 129 ms
41,364 KB
testcase_09 AC 128 ms
40,884 KB
testcase_10 AC 128 ms
41,120 KB
testcase_11 AC 129 ms
41,392 KB
testcase_12 AC 126 ms
41,396 KB
testcase_13 AC 126 ms
40,872 KB
testcase_14 AC 125 ms
41,176 KB
testcase_15 AC 112 ms
41,660 KB
testcase_16 AC 123 ms
41,124 KB
testcase_17 AC 130 ms
41,396 KB
testcase_18 AC 127 ms
41,284 KB
testcase_19 AC 127 ms
41,116 KB
testcase_20 AC 124 ms
41,392 KB
testcase_21 AC 124 ms
41,368 KB
testcase_22 AC 126 ms
41,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
 
class Main {
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		String s = sc.next();
		char[] c = s.toCharArray();
		char[] nc = new char[c.length];
		for(int i=0;i<c.length;i++){
			if(Character.isUpperCase(c[i])){
				nc[i] = Character.toLowerCase(c[i]);
			} else {
				nc[i] = Character.toUpperCase(c[i]);
			}
		}
		System.out.println(new String(nc));
	}
}
0