結果
問題 | No.2426 Select Plus or Minus |
ユーザー | H20 |
提出日時 | 2023-08-18 21:13:43 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 256 bytes |
コンパイル時間 | 149 ms |
コンパイル使用メモリ | 82,560 KB |
実行使用メモリ | 682,912 KB |
最終ジャッジ日時 | 2024-11-28 05:10:24 |
合計ジャッジ時間 | 57,220 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
56,704 KB |
testcase_01 | MLE | - |
testcase_02 | AC | 36 ms
56,832 KB |
testcase_03 | MLE | - |
testcase_04 | TLE | - |
testcase_05 | MLE | - |
testcase_06 | AC | 38 ms
56,832 KB |
testcase_07 | MLE | - |
testcase_08 | AC | 36 ms
56,832 KB |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | MLE | - |
testcase_12 | AC | 38 ms
56,832 KB |
testcase_13 | MLE | - |
testcase_14 | AC | 36 ms
57,088 KB |
testcase_15 | MLE | - |
testcase_16 | AC | 36 ms
56,960 KB |
testcase_17 | MLE | - |
testcase_18 | TLE | - |
testcase_19 | MLE | - |
testcase_20 | TLE | - |
testcase_21 | MLE | - |
testcase_22 | WA | - |
testcase_23 | MLE | - |
testcase_24 | TLE | - |
testcase_25 | MLE | - |
testcase_26 | AC | 35 ms
56,960 KB |
testcase_27 | MLE | - |
testcase_28 | TLE | - |
testcase_29 | MLE | - |
testcase_30 | AC | 36 ms
56,832 KB |
testcase_31 | MLE | - |
testcase_32 | TLE | - |
testcase_33 | TLE | - |
testcase_34 | TLE | - |
testcase_35 | TLE | - |
testcase_36 | TLE | - |
testcase_37 | AC | 35 ms
52,096 KB |
testcase_38 | TLE | - |
testcase_39 | TLE | - |
testcase_40 | AC | 36 ms
51,712 KB |
testcase_41 | AC | 36 ms
51,712 KB |
testcase_42 | AC | 36 ms
52,096 KB |
testcase_43 | MLE | - |
ソースコード
N = int(input()) ANS = [] S = (20,10,5,14,7) while N>1: if N%2==0: N=N//2 ANS.append('/') elif not N in S: N=N*3-1 ANS.append('-') else: N=N*3+1 ANS.append('+') print(len(ANS)) print(''.join(ANS))