結果
問題 |
No.3184 Make Same
|
ユーザー |
![]() |
提出日時 | 2025-06-20 23:24:09 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 180 bytes |
コンパイル時間 | 600 ms |
コンパイル使用メモリ | 82,776 KB |
実行使用メモリ | 102,736 KB |
最終ジャッジ日時 | 2025-06-20 23:24:18 |
合計ジャッジ時間 | 7,680 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 WA * 2 |
other | AC * 1 WA * 23 |
ソースコード
n=int(input()) a=list(map(int,input().split())) print(30) for i in range(30): l=0 while l<n and (a[l]>>i)&1==0: l+=1 print(1,l,1<<i) for j in range(l): a[j]+=1<<i a.sort()