結果

問題 No.163 cAPSlOCK
ユーザー k_kadorak_kadora
提出日時 2015-05-27 14:23:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 153 ms / 5,000 ms
コード長 412 bytes
コンパイル時間 3,886 ms
コンパイル使用メモリ 76,148 KB
実行使用メモリ 42,572 KB
最終ジャッジ日時 2024-07-06 10:53:34
合計ジャッジ時間 7,789 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
42,192 KB
testcase_01 AC 125 ms
41,812 KB
testcase_02 AC 121 ms
42,264 KB
testcase_03 AC 124 ms
42,248 KB
testcase_04 AC 112 ms
42,184 KB
testcase_05 AC 153 ms
42,112 KB
testcase_06 AC 114 ms
42,088 KB
testcase_07 AC 124 ms
42,240 KB
testcase_08 AC 124 ms
41,860 KB
testcase_09 AC 127 ms
42,340 KB
testcase_10 AC 117 ms
42,232 KB
testcase_11 AC 127 ms
42,572 KB
testcase_12 AC 141 ms
42,352 KB
testcase_13 AC 125 ms
42,468 KB
testcase_14 AC 138 ms
42,024 KB
testcase_15 AC 112 ms
42,572 KB
testcase_16 AC 112 ms
42,324 KB
testcase_17 AC 137 ms
42,120 KB
testcase_18 AC 123 ms
42,464 KB
testcase_19 AC 126 ms
42,384 KB
testcase_20 AC 113 ms
42,336 KB
testcase_21 AC 125 ms
42,256 KB
testcase_22 AC 115 ms
42,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Caps {
	public static void main(String[] arg){
		Scanner sc = new Scanner(System.in);
		String in = sc.next();
		int n = in.length();
		String out = "";
		for(int i = 0;i<n;i++){
			if(Character.isUpperCase(in.charAt(i))){
				out = out + Character.toLowerCase(in.charAt(i));
			}else{
				out = out + Character.toUpperCase(in.charAt(i));
			}
		}
		System.out.println(out);
	}
}
0