結果
問題 | No.536 人工知能 |
ユーザー | neko_the_shadow |
提出日時 | 2017-10-03 23:44:16 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 29 ms / 1,000 ms |
コード長 | 363 bytes |
コンパイル時間 | 931 ms |
コンパイル使用メモリ | 109,936 KB |
実行使用メモリ | 26,412 KB |
最終ジャッジ日時 | 2024-11-16 06:10:03 |
合計ジャッジ時間 | 2,017 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
24,536 KB |
testcase_01 | AC | 28 ms
26,332 KB |
testcase_02 | AC | 29 ms
26,412 KB |
testcase_03 | AC | 28 ms
22,324 KB |
testcase_04 | AC | 28 ms
24,368 KB |
testcase_05 | AC | 29 ms
24,156 KB |
testcase_06 | AC | 28 ms
24,280 KB |
testcase_07 | AC | 28 ms
24,416 KB |
testcase_08 | AC | 28 ms
26,156 KB |
testcase_09 | AC | 29 ms
24,368 KB |
testcase_10 | AC | 29 ms
26,408 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
public class Program { public static void Main(string[] args) { var name = System.Console.ReadLine(); string id; if (name.EndsWith("ai")) { id = name.Substring(0, name.Length - 2) + "AI"; } else { id = name + "-AI"; } System.Console.WriteLine(id); } }