結果
| 問題 |
No.305 鍵(2)
|
| コンテスト | |
| ユーザー |
LayCurse
|
| 提出日時 | 2015-11-27 22:35:03 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 28 ms / 2,000 ms |
| コード長 | 1,580 bytes |
| コンパイル時間 | 1,351 ms |
| コンパイル使用メモリ | 159,448 KB |
| 実行使用メモリ | 25,220 KB |
| 平均クエリ数 | 86.69 |
| 最終ジャッジ日時 | 2024-07-16 20:44:07 |
| 合計ジャッジ時間 | 2,718 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 13 |
コンパイルメッセージ
main.cpp: In function ‘void reader(double*)’:
main.cpp:15:29: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
15 | void reader(double *x){scanf("%lf",x);}
| ~~~~~^~~~~~~~~
main.cpp: In function ‘int main()’:
main.cpp:41:12: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
41 | scanf("%d%s",&k,buf);
| ~~~~~^~~~~~~~~~~~~~~
main.cpp:45:10: warning: ‘ind’ may be used uninitialized in this function [-Wmaybe-uninitialized]
45 | d[i] = ind;
| ~~~~~^~~~~
ソースコード
#include<bits/stdc++.h>
using namespace std;
#define REP(i,a,b) for(i=a;i<b;i++)
#define rep(i,n) REP(i,0,n)
#define mygc(c) (c)=getchar_unlocked()
#define mypc(c) putchar_unlocked(c)
#define ll long long
#define ull unsigned ll
void reader(int *x){int k,m=0;*x=0;for(;;){mygc(k);if(k=='-'){m=1;break;}if('0'<=k&&k<='9'){*x=k-'0';break;}}for(;;){mygc(k);if(k<'0'||k>'9')break;*x=(*x)*10+k-'0';}if(m)(*x)=-(*x);}
void reader(ll *x){int k,m=0;*x=0;for(;;){mygc(k);if(k=='-'){m=1;break;}if('0'<=k&&k<='9'){*x=k-'0';break;}}for(;;){mygc(k);if(k<'0'||k>'9')break;*x=(*x)*10+k-'0';}if(m)(*x)=-(*x);}
void reader(double *x){scanf("%lf",x);}
int reader(char c[]){int i,s=0;for(;;){mygc(i);if(i!=' '&&i!='\n'&&i!='\r'&&i!='\t'&&i!=EOF) break;}c[s++]=i;for(;;){mygc(i);if(i==' '||i=='\n'||i=='\r'||i=='\t'||i==EOF) break;c[s++]=i;}c[s]='\0';return s;}
template <class T, class S> void reader(T *x, S *y){reader(x);reader(y);}
template <class T, class S, class U> void reader(T *x, S *y, U *z){reader(x);reader(y);reader(z);}
template <class T, class S, class U, class V> void reader(T *x, S *y, U *z, V *w){reader(x);reader(y);reader(z);reader(w);}
char memarr[17000000]; void *mem = memarr;
#define MD 1000000007
void writer(int d[]){
int i;
rep(i,10) printf("%d",d[i]);
puts("");
fflush(stdout);
}
int main(){
int i, j, k, mx, ind;
int d[10] = {};
char buf[100];
rep(i,10){
mx = -1;
rep(j,10){
d[i] = j;
writer(d);
scanf("%d%s",&k,buf);
if(k==10) return 0;
if(mx < k) mx = k, ind = j;
}
d[i] = ind;
}
return 0;
}
LayCurse