結果
問題 | No.536 人工知能 |
ユーザー | soi09476291 |
提出日時 | 2019-11-26 09:20:33 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 24 ms / 1,000 ms |
コード長 | 463 bytes |
コンパイル時間 | 2,240 ms |
コンパイル使用メモリ | 108,956 KB |
実行使用メモリ | 25,528 KB |
最終ジャッジ日時 | 2024-11-06 08:23:10 |
合計ジャッジ時間 | 3,144 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 23 ms
23,488 KB |
testcase_01 | AC | 23 ms
23,128 KB |
testcase_02 | AC | 22 ms
21,168 KB |
testcase_03 | AC | 24 ms
25,288 KB |
testcase_04 | AC | 22 ms
23,264 KB |
testcase_05 | AC | 22 ms
21,172 KB |
testcase_06 | AC | 23 ms
23,384 KB |
testcase_07 | AC | 23 ms
23,520 KB |
testcase_08 | AC | 23 ms
25,280 KB |
testcase_09 | AC | 22 ms
23,352 KB |
testcase_10 | AC | 23 ms
25,528 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; namespace ConsoleApp11 { class Program { static void Main(string[] args) { string S = Console.ReadLine(); if(S[S.Length - 1] == 'i' && S[S.Length - 2] == 'a') { string str = S.Remove(S.Length - 2, 2); Console.WriteLine(str + "AI"); } else { Console.WriteLine(S + "-AI"); } } } }