結果

問題 No.2246 1333-like Number
ユーザー ttomo2023ttomo2023
提出日時 2023-04-30 11:56:06
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 224 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 24,648 KB
最終ジャッジ日時 2024-11-19 03:49:15
合計ジャッジ時間 48,333 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
16,000 KB
testcase_01 AC 26 ms
21,376 KB
testcase_02 AC 28 ms
15,872 KB
testcase_03 AC 26 ms
21,376 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 RE -
testcase_09 TLE -
testcase_10 RE -
testcase_11 TLE -
testcase_12 AC 51 ms
16,000 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 RE -
testcase_19 RE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 27 ms
15,872 KB
testcase_26 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

X = []
for a in range(1, 10):
    for b in range(a+1, 10):
        X.append((a, b))

n = int(input())
q, r = divmod(n-1, 36)

i = 0
a, b = X[r]
ans = a * pow(10, q+1)
for i in range(q+1):
    ans += b * pow(10, i)
print(ans)
0