結果
| 問題 | No.163 cAPSlOCK |
| コンテスト | |
| ユーザー |
杉山新
|
| 提出日時 | 2020-06-15 19:33:38 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 153 bytes |
| 記録 | |
| コンパイル時間 | 352 ms |
| コンパイル使用メモリ | 20,884 KB |
| 実行使用メモリ | 20,724 KB |
| 最終ジャッジ日時 | 2026-03-24 19:38:35 |
| 合計ジャッジ時間 | 6,785 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 20 |
ソースコード
S= input()
Correct=""
for i in S:
if i.isupper():
Correct+=i.lower()
if i.islower():
Correct+=i.upper()
print(Coreect)
杉山新