結果

問題 No.163 cAPSlOCK
ユーザー core123core123
提出日時 2019-04-16 15:39:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 413 bytes
コンパイル時間 2,133 ms
コンパイル使用メモリ 75,828 KB
実行使用メモリ 54,292 KB
最終ジャッジ日時 2024-09-22 08:16:33
合計ジャッジ時間 6,052 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
53,952 KB
testcase_01 AC 125 ms
54,196 KB
testcase_02 AC 124 ms
53,840 KB
testcase_03 AC 126 ms
54,188 KB
testcase_04 AC 125 ms
54,008 KB
testcase_05 AC 124 ms
54,008 KB
testcase_06 AC 123 ms
54,292 KB
testcase_07 AC 125 ms
54,180 KB
testcase_08 AC 126 ms
54,028 KB
testcase_09 AC 128 ms
54,016 KB
testcase_10 AC 126 ms
54,056 KB
testcase_11 AC 124 ms
53,996 KB
testcase_12 AC 125 ms
54,168 KB
testcase_13 AC 124 ms
54,272 KB
testcase_14 AC 124 ms
53,996 KB
testcase_15 AC 124 ms
54,064 KB
testcase_16 AC 125 ms
54,180 KB
testcase_17 AC 126 ms
53,880 KB
testcase_18 AC 124 ms
53,884 KB
testcase_19 AC 126 ms
54,024 KB
testcase_20 AC 123 ms
54,036 KB
testcase_21 AC 125 ms
54,012 KB
testcase_22 AC 132 ms
54,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.*;
public class Main{
	public static void main(String... args){
		Scanner sc=new Scanner(System.in);
		String string=sc.next();
		StringBuilder sb=new StringBuilder();
		for(char c:string.toCharArray()){
			if(Character.isUpperCase(c)){
				sb.append(Character.toLowerCase(c));
			}else{
				sb.append(Character.toUpperCase(c));
			}
		}
		System.out.println(sb);
	}
}
0