結果
問題 | No.1217 せしすせそ |
ユーザー |
![]() |
提出日時 | 2020-10-21 15:55:34 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 23 ms / 2,000 ms |
コード長 | 388 bytes |
コンパイル時間 | 2,525 ms |
コンパイル使用メモリ | 110,072 KB |
実行使用メモリ | 17,536 KB |
最終ジャッジ日時 | 2024-07-21 08:55:14 |
合計ジャッジ時間 | 1,700 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 10 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;namespace a{class a{static void Main(string[] args){var s = Console.ReadLine();var c = 'a';for (int i = 0; i < 26; i++){if (s[i] != c + i){Console.WriteLine("{0}to{1}",(char)(c + i),s[i]);}}}}}