結果
問題 | No.304 鍵(1) |
ユーザー |
|
提出日時 | 2016-11-19 17:50:12 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 382 bytes |
コンパイル時間 | 1,597 ms |
コンパイル使用メモリ | 167,256 KB |
実行使用メモリ | 40,272 KB |
最終ジャッジ日時 | 2024-07-17 00:38:01 |
合計ジャッジ時間 | 7,695 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | TLE * 1 -- * 5 |
ソースコード
#include <bits/stdc++.h>using namespace std;signed main(){for( int i = 0; i < 1000; ++i ){string s;for( int x = i; x; x /= 10 )s += ( char ) ( x % 10 );while( s.size() < 3 )s += "0";reverse( s.begin(), s.end() );cout << s << endl;int flag = 0;while( cin >> s ){flag = 1;}if( not flag ) break;}return 0;}