結果

問題 No.432 占い(Easy)
ユーザー mosmos_21mosmos_21
提出日時 2016-10-14 23:08:55
言語 C90
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 379 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 21,376 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-02 00:57:40
合計ジャッジ時間 1,033 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 WA -
testcase_02 AC 0 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 0 ms
6,944 KB
testcase_05 AC 0 ms
6,940 KB
testcase_06 WA -
testcase_07 AC 0 ms
6,944 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 WA -
testcase_10 AC 0 ms
6,944 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 4 ms
6,944 KB
testcase_13 AC 3 ms
6,940 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 0 ms
6,944 KB
testcase_16 AC 0 ms
6,940 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 1 ms
6,940 KB
testcase_21 AC 1 ms
6,944 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:7:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    7 |   scanf("%d", &n);
      |   ^~~~~~~~~~~~~~~
main.c:9:5: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    9 |     scanf("%s", s);
      |     ^~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
#include <stdlib.h>
int main(){
  char s[10000];
  int n,i,j,k;

  scanf("%d", &n);
  for(i=0;i<n;i++){
    scanf("%s", s);
    do{
      j=0;
      while(s[j+1]!='\0'){
        k = s[j]-'0' + s[j+1]-'0';
        k = k>9 ? k/10 + k%10 : k;
        s[j]= '0' + k;
        j++;
      }
      s[j]='\0';
    }while(j > 1);
    printf("%s\n",s);
  }
  return 0;
}
0