結果

問題 No.163 cAPSlOCK
ユーザー dogwood0424dogwood0424
提出日時 2017-11-29 11:43:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 154 ms / 5,000 ms
コード長 373 bytes
コンパイル時間 3,052 ms
コンパイル使用メモリ 76,120 KB
実行使用メモリ 42,660 KB
最終ジャッジ日時 2024-05-05 18:44:25
合計ジャッジ時間 7,177 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
42,220 KB
testcase_01 AC 135 ms
42,236 KB
testcase_02 AC 135 ms
42,496 KB
testcase_03 AC 120 ms
41,912 KB
testcase_04 AC 148 ms
42,368 KB
testcase_05 AC 135 ms
42,532 KB
testcase_06 AC 132 ms
42,524 KB
testcase_07 AC 127 ms
40,840 KB
testcase_08 AC 138 ms
41,712 KB
testcase_09 AC 151 ms
42,660 KB
testcase_10 AC 154 ms
42,524 KB
testcase_11 AC 138 ms
42,212 KB
testcase_12 AC 149 ms
42,196 KB
testcase_13 AC 142 ms
42,344 KB
testcase_14 AC 136 ms
42,304 KB
testcase_15 AC 148 ms
42,604 KB
testcase_16 AC 132 ms
42,456 KB
testcase_17 AC 135 ms
42,028 KB
testcase_18 AC 122 ms
41,896 KB
testcase_19 AC 131 ms
42,388 KB
testcase_20 AC 134 ms
42,400 KB
testcase_21 AC 135 ms
42,312 KB
testcase_22 AC 148 ms
42,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No163{
	public static void main(String[]args){
		Scanner sc = new Scanner(System.in);

		String p = sc.nextLine();
		String P = "";

		for(int i=0;i<p.length();i++) {

			P +=Character.isUpperCase(p.charAt(i)) ?
					Character.toLowerCase(p.charAt(i)) :
					Character.toUpperCase(p.charAt(i));

		}

		System.out.println(P);



	}
}
0