結果
問題 |
No.3184 Make Same
|
ユーザー |
![]() |
提出日時 | 2025-06-20 21:35:07 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 164 bytes |
コンパイル時間 | 370 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 121,040 KB |
最終ジャッジ日時 | 2025-06-20 21:35:20 |
合計ジャッジ時間 | 11,371 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 |
other | WA * 24 |
ソースコード
n=int(input()) a=[*map(int,input().split())] for i in range(30)[::-1]: l=r=0 while r<n and a[r]&1<<i<1:a[r]|=1<<i;r+=1;l=1 if l:print(l,r,1<<i);a.sort()