結果
問題 | No.2038 Strange Arrange |
ユーザー | asumo0729 |
提出日時 | 2022-08-21 13:00:06 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 198 bytes |
コンパイル時間 | 538 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 54,656 KB |
最終ジャッジ日時 | 2024-10-10 05:58:21 |
合計ジャッジ時間 | 1,488 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
ソースコード
from random import randrange N = int(input()) ans = [] for i in range(N): for j in range(9)[::-1]: if (i >> j) & 1: ans.append(str(j + 1)) break print(''.join(ans))