結果

問題 No.2246 1333-like Number
ユーザー forest3forest3
提出日時 2023-03-23 14:09:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 323 bytes
コンパイル時間 1,690 ms
コンパイル使用メモリ 172,812 KB
実行使用メモリ 12,172 KB
最終ジャッジ日時 2024-09-18 15:28:03
合計ジャッジ時間 5,258 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 TLE -
testcase_05 AC 999 ms
6,944 KB
testcase_06 AC 1,373 ms
6,944 KB
testcase_07 AC 1,696 ms
6,944 KB
testcase_08 AC 152 ms
6,944 KB
testcase_09 AC 1,100 ms
6,944 KB
testcase_10 AC 133 ms
6,940 KB
testcase_11 AC 859 ms
6,940 KB
testcase_12 AC 22 ms
6,940 KB
testcase_13 AC 80 ms
6,940 KB
testcase_14 AC 222 ms
6,948 KB
testcase_15 AC 216 ms
6,940 KB
testcase_16 AC 577 ms
6,944 KB
testcase_17 AC 1,763 ms
6,944 KB
testcase_18 AC 69 ms
6,940 KB
testcase_19 AC 119 ms
6,940 KB
testcase_20 TLE -
testcase_21 AC 1,817 ms
6,940 KB
testcase_22 AC 672 ms
6,948 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 2 ms
6,944 KB
testcase_26 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main()
{
	int N;
	cin >> N;
	queue<string> q;
	for( int i = 1; i < 10; i++ ) {
		for( int j = i + 1; j < 10; j++ ) q.push( to_string(i * 10 + j) );
	}
	string ans;
	while( N ) {
		ans = q.front();
		q.pop();
		q.push( ans + ans.back() );
		N--;
	}
	cout << ans << endl;
}
0