結果

問題 No.495 (^^*) Easy
ユーザー sk3388607083sk3388607083
提出日時 2018-06-24 13:00:05
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 400 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 23,296 KB
実行使用メモリ 6,940 KB
最終ジャッジ日時 2024-06-30 22:26:04
合計ジャッジ時間 705 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 0 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:8:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 |   scanf("%s", S);
      |   ~~~~~^~~~~~~~~

ソースコード

diff #

#include<stdio.h>
#include<string.h>

int main(void){
  int i;
  char S[100001], s[6];
  int n1 = 0, n2 = 0;
  scanf("%s", S);
  for(i = 0; S[i] != '#'; i += 5){
    s[0] = S[i];
    s[1] = S[i+1];
    s[2] = S[i+2];
    s[3] = S[i+3];
    s[4] = S[i+4];
    s[5] = '\0';
    if(strcmp(s, "(^^*)") == 0) n1++;
    else if(strcmp(s, "(*^^)") == 0) n2++;
  }
  printf("%d %d\n", n1, n2);
  return 0;
}
0