結果
問題 | No.304 鍵(1) |
ユーザー | Ysmr_Ry |
提出日時 | 2016-03-03 22:08:51 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 56 ms / 2,000 ms |
コード長 | 270 bytes |
コンパイル時間 | 136 ms |
コンパイル使用メモリ | 21,888 KB |
実行使用メモリ | 25,220 KB |
平均クエリ数 | 309.17 |
最終ジャッジ日時 | 2024-07-16 23:03:53 |
合計ジャッジ時間 | 949 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 6 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:13:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 13 | scanf( "%s", S ); | ~~~~~^~~~~~~~~~~
ソースコード
// yukicoder 304 (http://yukicoder.me/problems/765) #include<cstdio> #define rep(i,a) for(int i=0;i<(a);++i) char S[10]; int main() { rep( i, 1000 ) { printf( "%03d\n", i ); std::fflush( stdout ); scanf( "%s", S ); if( *S == 'u' ) break; } return 0; }