結果

問題 No.163 cAPSlOCK
ユーザー dogwood0424dogwood0424
提出日時 2017-11-29 11:43:02
言語 Java
(openjdk 23)
結果
AC  
実行時間 153 ms / 5,000 ms
コード長 373 bytes
コンパイル時間 3,210 ms
コンパイル使用メモリ 75,988 KB
実行使用メモリ 42,676 KB
最終ジャッジ日時 2024-11-27 18:53:11
合計ジャッジ時間 7,376 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,980 KB
testcase_01 AC 126 ms
41,720 KB
testcase_02 AC 130 ms
41,796 KB
testcase_03 AC 134 ms
42,188 KB
testcase_04 AC 142 ms
42,184 KB
testcase_05 AC 117 ms
42,024 KB
testcase_06 AC 144 ms
42,636 KB
testcase_07 AC 147 ms
42,304 KB
testcase_08 AC 144 ms
42,416 KB
testcase_09 AC 139 ms
42,676 KB
testcase_10 AC 145 ms
42,156 KB
testcase_11 AC 133 ms
42,368 KB
testcase_12 AC 142 ms
42,400 KB
testcase_13 AC 142 ms
42,416 KB
testcase_14 AC 135 ms
42,148 KB
testcase_15 AC 135 ms
42,528 KB
testcase_16 AC 147 ms
42,104 KB
testcase_17 AC 144 ms
42,468 KB
testcase_18 AC 153 ms
42,512 KB
testcase_19 AC 127 ms
41,756 KB
testcase_20 AC 141 ms
42,656 KB
testcase_21 AC 137 ms
41,864 KB
testcase_22 AC 148 ms
42,344 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