結果
問題 | No.304 鍵(1) |
ユーザー | 0w1 |
提出日時 | 2016-11-19 17:50:12 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
ソースコード
#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; }