結果

問題 No.163 cAPSlOCK
ユーザー howakurohowakuro
提出日時 2015-09-25 01:19:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 113 ms / 5,000 ms
コード長 479 bytes
コンパイル時間 3,112 ms
コンパイル使用メモリ 75,500 KB
実行使用メモリ 41,432 KB
最終ジャッジ日時 2024-07-19 09:07:00
合計ジャッジ時間 6,108 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
40,660 KB
testcase_01 AC 112 ms
41,100 KB
testcase_02 AC 94 ms
39,972 KB
testcase_03 AC 108 ms
40,916 KB
testcase_04 AC 96 ms
39,864 KB
testcase_05 AC 107 ms
41,356 KB
testcase_06 AC 99 ms
41,064 KB
testcase_07 AC 94 ms
39,832 KB
testcase_08 AC 105 ms
40,408 KB
testcase_09 AC 113 ms
41,012 KB
testcase_10 AC 111 ms
41,128 KB
testcase_11 AC 103 ms
39,972 KB
testcase_12 AC 98 ms
39,864 KB
testcase_13 AC 108 ms
41,332 KB
testcase_14 AC 103 ms
40,072 KB
testcase_15 AC 103 ms
40,148 KB
testcase_16 AC 99 ms
40,008 KB
testcase_17 AC 111 ms
41,432 KB
testcase_18 AC 98 ms
41,400 KB
testcase_19 AC 112 ms
41,148 KB
testcase_20 AC 113 ms
40,916 KB
testcase_21 AC 100 ms
41,004 KB
testcase_22 AC 109 ms
41,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Puroguram{
	static Scanner scan= new Scanner(System.in);
	
	public static void main(String[] Args){
		String S =scan.next();
		
		StringBuilder S2 = new StringBuilder();
		for (int i=0; i<S.length(); i++){
			Character C1=S.charAt(i);
			if(Character.isUpperCase(C1)==true){
				S2.append(Character.toLowerCase(C1));
			}else{
				Character.toLowerCase(C1);
				S2.append(Character.toUpperCase(C1));
			}
		}
		System.out.println(S2);
	}
}
0