結果

問題 No.163 cAPSlOCK
ユーザー spacenautspacenaut
提出日時 2016-05-14 22:47:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 160 ms / 5,000 ms
コード長 409 bytes
コンパイル時間 3,101 ms
コンパイル使用メモリ 74,644 KB
実行使用メモリ 54,416 KB
最終ジャッジ日時 2024-10-06 02:51:34
合計ジャッジ時間 6,887 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
53,980 KB
testcase_01 AC 147 ms
54,000 KB
testcase_02 AC 111 ms
54,084 KB
testcase_03 AC 124 ms
53,988 KB
testcase_04 AC 160 ms
54,060 KB
testcase_05 AC 118 ms
54,136 KB
testcase_06 AC 115 ms
53,800 KB
testcase_07 AC 118 ms
54,172 KB
testcase_08 AC 123 ms
53,868 KB
testcase_09 AC 122 ms
53,984 KB
testcase_10 AC 118 ms
54,408 KB
testcase_11 AC 115 ms
53,916 KB
testcase_12 AC 125 ms
53,976 KB
testcase_13 AC 122 ms
53,988 KB
testcase_14 AC 126 ms
53,948 KB
testcase_15 AC 119 ms
54,152 KB
testcase_16 AC 125 ms
54,152 KB
testcase_17 AC 124 ms
53,976 KB
testcase_18 AC 116 ms
54,036 KB
testcase_19 AC 116 ms
54,032 KB
testcase_20 AC 108 ms
53,568 KB
testcase_21 AC 118 ms
54,032 KB
testcase_22 AC 124 ms
54,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No0163{
	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 < str.length(); i ++){
			if(Character.isLowerCase(c[i])){
				System.out.print(Character.toUpperCase(c[i]));
			}else{
				System.out.print(Character.toLowerCase(c[i]));
			}
		}
		
		sc.close();
	}
}
0