結果
問題 | No.1732 ~サンプルはちゃんと見て!~ 16進数と8進数(2) |
ユーザー | googol_S0 |
提出日時 | 2021-11-05 22:05:21 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 281 bytes |
コンパイル時間 | 378 ms |
コンパイル使用メモリ | 82,228 KB |
実行使用メモリ | 61,864 KB |
最終ジャッジ日時 | 2024-11-06 12:56:10 |
合計ジャッジ時間 | 1,319 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 37 ms
52,568 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
ソースコード
X=['ABDCC','AAFCC','ACADE'] for t in range(int(input())): N=int(input()) A='' if N%3==1: A='12' elif N%3==2: A='252' else: A='' A+='5252'*(N//3) if len(A)%7: print(-1) continue x=len(A) S='' while x: S+=X[(x%21)//7-1] x-=7 print(S)