結果
| 問題 | No.418 ミンミンゼミ |
| コンテスト | |
| ユーザー |
hirakich1048576
|
| 提出日時 | 2016-12-08 17:14:03 |
| 言語 | C90 (gcc 15.2.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 167 bytes |
| 記録 | |
| コンパイル時間 | 50 ms |
| コンパイル使用メモリ | 35,328 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-24 17:41:43 |
| 合計ジャッジ時間 | 1,571 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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