結果

問題 No.163 cAPSlOCK
ユーザー fukuseifukusei
提出日時 2017-05-27 12:19:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 5,000 ms
コード長 482 bytes
コンパイル時間 2,171 ms
コンパイル使用メモリ 74,204 KB
実行使用メモリ 41,808 KB
最終ジャッジ日時 2024-09-21 14:31:30
合計ジャッジ時間 6,174 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,808 KB
testcase_01 AC 128 ms
41,292 KB
testcase_02 AC 115 ms
40,128 KB
testcase_03 AC 142 ms
41,424 KB
testcase_04 AC 138 ms
41,192 KB
testcase_05 AC 129 ms
41,056 KB
testcase_06 AC 128 ms
41,112 KB
testcase_07 AC 135 ms
41,312 KB
testcase_08 AC 139 ms
41,500 KB
testcase_09 AC 136 ms
41,236 KB
testcase_10 AC 137 ms
41,264 KB
testcase_11 AC 132 ms
41,072 KB
testcase_12 AC 121 ms
40,212 KB
testcase_13 AC 135 ms
41,216 KB
testcase_14 AC 134 ms
41,464 KB
testcase_15 AC 133 ms
41,164 KB
testcase_16 AC 134 ms
41,208 KB
testcase_17 AC 133 ms
41,460 KB
testcase_18 AC 128 ms
41,140 KB
testcase_19 AC 128 ms
41,224 KB
testcase_20 AC 131 ms
41,344 KB
testcase_21 AC 133 ms
41,684 KB
testcase_22 AC 137 ms
41,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class test{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		String str = sc.next();
		String c[] = new String [str.length()]; 
		
		for(int i=0; i<c.length; i++){
			if(str.substring(i, i+1).toUpperCase().equals( str.substring(i, i+1) ) ){
				c[i] = str.substring(i, i+1).toLowerCase();
			}
			else{
				c[i] = str.substring(i, i+1).toUpperCase();
			}
		}
		for(int i=0; i<c.length; i++){
			System.out.print(c[i]);
		}
	}
}
0