結果

問題 No.163 cAPSlOCK
ユーザー ki_ki33ki_ki33
提出日時 2015-03-12 23:25:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 1,059 bytes
コンパイル時間 2,627 ms
コンパイル使用メモリ 80,676 KB
実行使用メモリ 54,172 KB
最終ジャッジ日時 2024-06-24 20:35:31
合計ジャッジ時間 6,227 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
53,088 KB
testcase_01 AC 120 ms
54,020 KB
testcase_02 AC 107 ms
53,012 KB
testcase_03 AC 107 ms
52,872 KB
testcase_04 AC 119 ms
54,172 KB
testcase_05 AC 118 ms
54,000 KB
testcase_06 AC 122 ms
54,144 KB
testcase_07 AC 122 ms
53,936 KB
testcase_08 AC 124 ms
54,132 KB
testcase_09 AC 108 ms
41,340 KB
testcase_10 AC 122 ms
41,468 KB
testcase_11 AC 118 ms
41,640 KB
testcase_12 AC 120 ms
40,988 KB
testcase_13 AC 126 ms
41,192 KB
testcase_14 AC 120 ms
41,160 KB
testcase_15 AC 108 ms
41,212 KB
testcase_16 AC 124 ms
41,292 KB
testcase_17 AC 120 ms
41,160 KB
testcase_18 AC 122 ms
41,404 KB
testcase_19 AC 119 ms
41,284 KB
testcase_20 AC 117 ms
41,364 KB
testcase_21 AC 119 ms
41,252 KB
testcase_22 AC 123 ms
41,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedInputStream;
import java.io.IOException;
import java.math.BigDecimal;
import java.math.BigInteger;
import java.util.*;
import java.util.Map.Entry;
import java.util.concurrent.ConcurrentSkipListSet;

public class Main {
	public static final int C =  1000000007;
	static final int CY = 1000000000;
	//static boolean MAP[][];
	static int N;
	static int M;
	static int[][] DIF;
	static String S;
	static int K;
	static int X[][];
	//static String S[];
	static int HA[];

	static long DP[];
	static int ST[][];
	static ConcurrentSkipListSet<Integer> TS;
	static ArrayList<Integer> AL;
	public static void main(String[] args) {
		StringBuilder sb = new StringBuilder();
		BufferedInputStream bs = new BufferedInputStream(System.in);
		Scanner sc = new Scanner(bs);

		String str = sc.next();

		String ans = "";

		int d = 'a' - 'A';
		
		char[] cs = str.toCharArray();
		for (int i=0; i < str.length(); i++) {
			if (cs[i] <='Z' ) {
				cs[i] += d;
			}else {
				cs[i] -= d;
			}
		}
		ans = new String(cs);
		System.out.println(ans);
	}
}
0