結果
| 問題 | No.418 ミンミンゼミ |
| コンテスト | |
| ユーザー |
hirakich1048576
|
| 提出日時 | 2016-12-08 17:14:03 |
| 言語 | C90(gcc15) (gcc 15.2.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 167 bytes |
| 記録 | |
| コンパイル時間 | 195 ms |
| コンパイル使用メモリ | 34,176 KB |
| 最終ジャッジ日時 | 2026-02-23 23:30:08 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | WA * 25 |
ソースコード
#include <stdio.h>
int main(void){
char s[101], *t;
int i = 0;
scanf("%s", s);
t = s;
while (*t){ if (*s == 'i') i++; t++;}
printf("%d\n", i);
return! "mi-nminmin";
}
hirakich1048576