結果

問題 No.2246 1333-like Number
ユーザー shobonvipshobonvip
提出日時 2023-03-17 21:22:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 217 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 64,168 KB
最終ジャッジ日時 2024-09-18 10:09:48
合計ジャッジ時間 1,909 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,736 KB
testcase_01 AC 37 ms
51,940 KB
testcase_02 AC 39 ms
52,524 KB
testcase_03 AC 38 ms
52,020 KB
testcase_04 AC 42 ms
63,192 KB
testcase_05 AC 36 ms
61,692 KB
testcase_06 AC 38 ms
62,824 KB
testcase_07 AC 38 ms
62,316 KB
testcase_08 AC 37 ms
60,040 KB
testcase_09 AC 37 ms
61,336 KB
testcase_10 AC 37 ms
60,716 KB
testcase_11 AC 39 ms
60,780 KB
testcase_12 AC 36 ms
59,180 KB
testcase_13 AC 36 ms
59,096 KB
testcase_14 AC 36 ms
60,496 KB
testcase_15 AC 36 ms
59,544 KB
testcase_16 AC 36 ms
60,576 KB
testcase_17 AC 37 ms
62,012 KB
testcase_18 AC 37 ms
60,236 KB
testcase_19 AC 36 ms
60,604 KB
testcase_20 AC 37 ms
62,436 KB
testcase_21 AC 37 ms
62,396 KB
testcase_22 AC 40 ms
60,804 KB
testcase_23 AC 39 ms
62,472 KB
testcase_24 AC 39 ms
63,180 KB
testcase_25 AC 32 ms
52,436 KB
testcase_26 AC 40 ms
64,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
t = []
for i in range(1, 10):
	for j in range(i+1, 10):
		t.append((i, j))

n -= 1
v = n // 36
w = n % 36

g = [str(t[w][0]), str(t[w][1])]
for i in range(v):
	g.append(str(t[w][1]))
print("".join(g))
0