結果
問題 | No.725 木は明らかに森である |
ユーザー | N/A |
提出日時 | 2018-08-25 21:26:33 |
言語 | C (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 527 bytes |
コンパイル時間 | 166 ms |
コンパイル使用メモリ | 28,544 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-26 21:42:57 |
合計ジャッジ時間 | 585 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 0 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 1 ms
5,376 KB |
ソースコード
#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <string.h> int main(void) { char S[128]; scanf("%s", &S); for (int i = 0; S[i] != '\0'; i++) { if (S[i] == 't') { if (S[i + 1] == 'r') { if (S[i + 2] == 'e') { if (S[i + 3] == 'e') { if (S[i + 4] == 'o') { if (S[i + 5] == 'n') { if (S[i + 6] == 'e') { printf("forest"); i += 6; } } } } } } else printf("t"); } else printf("%c", S[i]); } puts(""); return 0; }