結果

問題 No.2246 1333-like Number
ユーザー colognecologne
提出日時 2023-03-21 13:23:25
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 317 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 81,708 KB
実行使用メモリ 92,600 KB
最終ジャッジ日時 2024-09-18 14:19:51
合計ジャッジ時間 3,857 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
54,152 KB
testcase_01 AC 34 ms
53,144 KB
testcase_02 AC 41 ms
60,784 KB
testcase_03 AC 34 ms
52,668 KB
testcase_04 TLE -
testcase_05 AC 878 ms
80,732 KB
testcase_06 AC 1,119 ms
82,076 KB
testcase_07 AC 1,249 ms
84,464 KB
testcase_08 AC 249 ms
76,076 KB
testcase_09 AC 1,188 ms
80,696 KB
testcase_10 AC 198 ms
76,104 KB
testcase_11 AC 742 ms
79,292 KB
testcase_12 AC 71 ms
75,840 KB
testcase_13 AC 134 ms
76,128 KB
testcase_14 AC 267 ms
76,492 KB
testcase_15 AC 265 ms
76,408 KB
testcase_16 AC 543 ms
78,120 KB
testcase_17 AC 1,351 ms
84,424 KB
testcase_18 AC 118 ms
75,912 KB
testcase_19 AC 176 ms
76,312 KB
testcase_20 AC 1,898 ms
90,656 KB
testcase_21 AC 1,077 ms
82,156 KB
testcase_22 AC 547 ms
78,568 KB
testcase_23 AC 1,620 ms
92,232 KB
testcase_24 AC 1,491 ms
89,164 KB
testcase_25 AC 36 ms
52,936 KB
testcase_26 AC 1,966 ms
92,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools


def g():
    for d in itertools.count(1):
        for a in range(1, 10):
            for b in range(a+1, 10):
                yield str(a) + str(b)*d


def main():
    N = int(input())
    x = g()
    for i in range(N-1):
        next(x)
    print(next(x))


if __name__ == '__main__':
    main()
0