結果
| 問題 |
No.432 占い(Easy)
|
| コンテスト | |
| ユーザー |
Bantako
|
| 提出日時 | 2017-07-29 20:29:24 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 9 ms / 2,000 ms |
| コード長 | 393 bytes |
| コンパイル時間 | 2,053 ms |
| コンパイル使用メモリ | 158,940 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-10 20:24:58 |
| 合計ジャッジ時間 | 2,707 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 22 |
コンパイルメッセージ
main.cpp:2:1: warning: ISO C++ forbids declaration of ‘main’ with no type [-Wreturn-type]
2 | main(){
| ^~~~
main.cpp: In function ‘int main()’:
main.cpp:5:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
5 | scanf("%d",&N);
| ~~~~~^~~~~~~~~
main.cpp:7:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
7 | scanf("%s",S);
| ~~~~~^~~~~~~~
ソースコード
#include<bits/stdc++.h>
main(){
int N;
char S[1001];
scanf("%d",&N);
for(int j = 0;j < N;j++){
scanf("%s",S);
while(strlen(S)!=1){
for(int i = 0;i < strlen(S)-1;i++){
int a = S[i]-'0'+S[i+1]-'0';
S[i] = (!a?0:a%9?a%9:9)+'0';
}
S[strlen(S)-1] = '\0';
}
printf("%s\n",S);
}
}
Bantako