結果
問題 | No.341 沈黙の期間 |
ユーザー | Humpty0904 |
提出日時 | 2016-10-02 11:08:01 |
言語 | C90 (gcc 11.4.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 120 bytes |
コンパイル時間 | 414 ms |
コンパイル使用メモリ | 19,328 KB |
実行使用メモリ | 7,972 KB |
最終ジャッジ日時 | 2024-05-01 09:33:43 |
合計ジャッジ時間 | 12,463 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
コンパイルメッセージ
main.c:2:1: warning: data definition has no type or storage class 2 | i,n,m; | ^ main.c:2:1: warning: type defaults to ‘int’ in declaration of ‘i’ [-Wimplicit-int] main.c:2:3: warning: type defaults to ‘int’ in declaration of ‘n’ [-Wimplicit-int] 2 | i,n,m; | ^ main.c:2:5: warning: type defaults to ‘int’ in declaration of ‘m’ [-Wimplicit-int] 2 | i,n,m; | ^ main.c:3:1: warning: return type defaults to ‘int’ [-Wimplicit-int] 3 | main(){ | ^~~~ main.c: In function ‘main’: main.c:4:13: warning: implicit declaration of function ‘gets’ [-Wimplicit-function-declaration] 4 | for(gets(s);s[i];)s[i+2]+90|s[i+1]+128|s[i++]+30?n=0:(i+=2,m<++n?m=n:0); | ^~~~ main.c:5:12: warning: implicit declaration of function ‘printf’ [-Wimplicit-function-declaration] 5 | i=!printf("%d",m); | ^~~~~~ main.c:1:1: note: include ‘<stdio.h>’ or provide a declaration of ‘printf’ +++ |+#include <stdio.h> 1 | char s[]; main.c:5:12: warning: incompatible implicit declaration of built-in function ‘printf’ [-Wbuiltin-declaration-mismatch] 5 | i=!printf("%d",m); | ^~~~~~ main.c:5:12: note: include ‘<stdio.h>’ or provide a declaration of ‘printf’ main.c: At top level: main.c:1:6: warning: array ‘s’ assumed to have one element 1 | char s[]; | ^ /usr/bin/ld: /tmp/ccNUX0ll.o: in function `main': main.c:(.text.startup+0x12): 警告: the `gets' function is dangerous and should not be used.
ソースコード
char s[]; i,n,m; main(){ for(gets(s);s[i];)s[i+2]+90|s[i+1]+128|s[i++]+30?n=0:(i+=2,m<++n?m=n:0); i=!printf("%d",m); }