結果

問題 No.163 cAPSlOCK
ユーザー villachvillach
提出日時 2017-10-13 15:57:56
言語 Java
(openjdk 23)
結果
AC  
実行時間 127 ms / 5,000 ms
コード長 443 bytes
コンパイル時間 3,449 ms
コンパイル使用メモリ 76,256 KB
実行使用メモリ 41,344 KB
最終ジャッジ日時 2024-11-17 11:25:11
合計ジャッジ時間 7,001 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
40,992 KB
testcase_01 AC 106 ms
39,720 KB
testcase_02 AC 116 ms
41,184 KB
testcase_03 AC 120 ms
40,980 KB
testcase_04 AC 117 ms
41,296 KB
testcase_05 AC 120 ms
41,092 KB
testcase_06 AC 116 ms
41,304 KB
testcase_07 AC 118 ms
41,344 KB
testcase_08 AC 126 ms
40,876 KB
testcase_09 AC 127 ms
40,908 KB
testcase_10 AC 127 ms
40,868 KB
testcase_11 AC 122 ms
41,024 KB
testcase_12 AC 104 ms
39,600 KB
testcase_13 AC 116 ms
40,928 KB
testcase_14 AC 120 ms
41,164 KB
testcase_15 AC 121 ms
41,168 KB
testcase_16 AC 104 ms
39,932 KB
testcase_17 AC 105 ms
40,136 KB
testcase_18 AC 101 ms
40,156 KB
testcase_19 AC 117 ms
40,848 KB
testcase_20 AC 105 ms
40,132 KB
testcase_21 AC 116 ms
40,960 KB
testcase_22 AC 116 ms
40,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class N163 {
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		String hoge = sc.nextLine();
		String fuga = "";
		Character c;
		for(int i = 0;i < hoge.length();++i){
			c = hoge.charAt(i);
			if(Character.isLowerCase(c)){
				c = Character.toUpperCase(c);
			}else{
				c = Character.toLowerCase(c);
			}
			fuga += c;
		}
		System.out.println(fuga);
	}
}
0