結果
| 問題 |
No.163 cAPSlOCK
|
| コンテスト | |
| ユーザー |
cleantted
|
| 提出日時 | 2016-08-24 20:15:24 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 188 bytes |
| コンパイル時間 | 131 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 10,624 KB |
| 最終ジャッジ日時 | 2024-11-08 02:09:19 |
| 合計ジャッジ時間 | 1,652 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 20 |
ソースコード
S = input()
#-----機能部分-----
res = ""
for i in S:
if S[i] in string.ascii_lowercase: res += S[i].upper()
elif S[i] in string.ascii_uppercase: res += S[i].lower()
print(res)
cleantted