結果

問題 No.290 1010
ユーザー testestesttestestest
提出日時 2015-10-17 22:01:01
言語 C90
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 117 bytes
コンパイル時間 435 ms
コンパイル使用メモリ 19,072 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-22 10:57:42
合計ジャッジ時間 1,388 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 0 ms
5,376 KB
testcase_06 AC 0 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 0 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 0 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 0 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 0 ms
5,376 KB
testcase_23 AC 0 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:4:3: warning: implicit declaration of function ‘read’ [-Wimplicit-function-declaration]
    4 | n=read(0,i,5);
      |   ^~~~
main.c:5:33: warning: implicit declaration of function ‘puts’ [-Wimplicit-function-declaration]
    5 | if(n==5||i[0]==i[1]||i[1]==i[2])puts("YES");else puts("NO");
      |                                 ^~~~
main.c:1:1: note: include ‘<stdio.h>’ or provide a declaration of ‘puts’
  +++ |+#include <stdio.h>
    1 | int main(){

ソースコード

diff #

int main(){
char i[5];
int n;
n=read(0,i,5);
if(n==5||i[0]==i[1]||i[1]==i[2])puts("YES");else puts("NO");
return 0;
}
0