結果
| 問題 | No.163 cAPSlOCK |
| コンテスト | |
| ユーザー |
merumeru_333333
|
| 提出日時 | 2020-02-29 17:12:11 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 768 bytes |
| コンパイル時間 | 1,010 ms |
| コンパイル使用メモリ | 111,260 KB |
| 実行使用メモリ | 27,344 KB |
| 最終ジャッジ日時 | 2024-10-13 20:03:41 |
| 合計ジャッジ時間 | 2,329 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 20 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp19
{
class Program
{
static void Main(string[] args)
{
string s = Console.ReadLine();
string[] password = new string[s.Length];
for (int i = 0; i < s.Length; i++)
{
if (password[i].CompareTo(password[i].ToUpper()) != 0)
{
password[i] = password[i].ToUpper();
}
else
{
password[i] = password[i].ToLower();
}
Console.Write(password[i]);
}
Console.ReadLine();
}
}
}
merumeru_333333