結果
問題 | No.536 人工知能 |
ユーザー | RadPeria |
提出日時 | 2017-12-04 00:34:55 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 683 bytes |
コンパイル時間 | 1,195 ms |
コンパイル使用メモリ | 27,904 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-05-06 09:29:24 |
合計ジャッジ時間 | 1,228 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | RE | - |
testcase_02 | WA | - |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | RE | - |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | RE | - |
testcase_08 | AC | 1 ms
6,944 KB |
testcase_09 | AC | 1 ms
6,944 KB |
testcase_10 | AC | 1 ms
6,944 KB |
ソースコード
#include <stdio.h> int main(){ char S[10]; int a; 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; }