結果

問題 No.163 cAPSlOCK
ユーザー kou6839kou6839
提出日時 2015-03-13 00:14:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 156 ms / 5,000 ms
コード長 442 bytes
コンパイル時間 2,026 ms
コンパイル使用メモリ 76,884 KB
実行使用メモリ 42,680 KB
最終ジャッジ日時 2024-06-28 22:41:34
合計ジャッジ時間 6,127 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
42,532 KB
testcase_01 AC 132 ms
42,636 KB
testcase_02 AC 138 ms
42,328 KB
testcase_03 AC 135 ms
42,632 KB
testcase_04 AC 134 ms
42,384 KB
testcase_05 AC 123 ms
42,472 KB
testcase_06 AC 137 ms
42,464 KB
testcase_07 AC 122 ms
42,500 KB
testcase_08 AC 136 ms
41,728 KB
testcase_09 AC 151 ms
42,380 KB
testcase_10 AC 134 ms
42,488 KB
testcase_11 AC 120 ms
42,512 KB
testcase_12 AC 134 ms
42,364 KB
testcase_13 AC 117 ms
42,160 KB
testcase_14 AC 137 ms
42,140 KB
testcase_15 AC 146 ms
42,504 KB
testcase_16 AC 156 ms
42,364 KB
testcase_17 AC 151 ms
42,404 KB
testcase_18 AC 142 ms
42,340 KB
testcase_19 AC 139 ms
42,672 KB
testcase_20 AC 139 ms
42,424 KB
testcase_21 AC 129 ms
42,636 KB
testcase_22 AC 135 ms
42,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.beans.IntrospectionException;
import java.util.*;

class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String string = sc.next();
		String ans = "";
		for(int i=0;i<string.length();i++){
			if(Character.isUpperCase(string.charAt(i))){
				ans+=Character.toLowerCase(string.charAt(i));
			}else{
				ans+=Character.toUpperCase(string.charAt(i));
			}
		}
		System.out.println(ans);
	}
}
0