結果
| 問題 | No.163 cAPSlOCK |
| コンテスト | |
| ユーザー |
wesoweeen
|
| 提出日時 | 2021-07-18 15:30:59 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 271 bytes |
| コンパイル時間 | 72 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 10,624 KB |
| 最終ジャッジ日時 | 2024-07-08 09:13:56 |
| 合計ジャッジ時間 | 1,426 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 20 |
ソースコード
def main():
S = list(input())
password = []
print((S))
for s in S:
if str.islower(s):
password.append(s.upper())
else:
password.append(s.lower())
print(''.join(password))
if __name__ == '__main__':
main()
wesoweeen