結果

問題 No.2246 1333-like Number
ユーザー 赤信号赤信号
提出日時 2023-03-17 21:38:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 176 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 81,752 KB
実行使用メモリ 53,376 KB
最終ジャッジ日時 2024-09-18 10:26:33
合計ジャッジ時間 2,026 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,300 KB
testcase_01 AC 32 ms
52,228 KB
testcase_02 AC 32 ms
53,340 KB
testcase_03 AC 32 ms
51,920 KB
testcase_04 AC 33 ms
52,084 KB
testcase_05 AC 31 ms
53,356 KB
testcase_06 AC 31 ms
52,372 KB
testcase_07 AC 32 ms
53,184 KB
testcase_08 AC 31 ms
52,076 KB
testcase_09 AC 35 ms
51,996 KB
testcase_10 AC 32 ms
52,368 KB
testcase_11 AC 34 ms
51,816 KB
testcase_12 AC 34 ms
52,040 KB
testcase_13 AC 32 ms
51,520 KB
testcase_14 AC 33 ms
51,928 KB
testcase_15 AC 33 ms
53,376 KB
testcase_16 AC 32 ms
52,672 KB
testcase_17 AC 32 ms
51,820 KB
testcase_18 AC 32 ms
53,296 KB
testcase_19 AC 33 ms
52,148 KB
testcase_20 AC 33 ms
52,824 KB
testcase_21 AC 33 ms
52,016 KB
testcase_22 AC 31 ms
52,564 KB
testcase_23 AC 32 ms
52,624 KB
testcase_24 AC 33 ms
52,992 KB
testcase_25 AC 32 ms
52,628 KB
testcase_26 AC 33 ms
53,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
a = (N-1)//36
b = (N-1)%36+1
cnt = 0
for i in range(1,9):
    for j in range(i+1,10):
        cnt+=1
        if cnt==b:
            print(str(i*10+j)+str(j)*a)
0