結果

問題 No.536 人工知能
ユーザー RadPeriaRadPeria
提出日時 2017-12-04 00:35:18
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 667 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 28,928 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-06 09:29:25
合計ジャッジ時間 691 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 1 ms
6,940 KB
testcase_04 WA -
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 WA -
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
char S[10];
int a;
int main(){

        for(int i=0;i<10;i++){
                scanf("%c", &S[i]);
                if(S[i]=='\n'){
                        a=i-1;
                        break;
                }
        }
        if(S[a]=='i'&&S[a-1]=='a'){
                S[a]='I';
                S[a-1]='A';
                for(int i=0;i<=a;i++){
                        printf("%c",S[i] );
                }
                printf("\n");
        }else{
                for(int i=0;i<=a;i++){
                        printf("%c",S[i] );
                }
                printf("-AI\n");
        }
        return 0;
}
0