結果
問題 | No.1837 Same but Different |
ユーザー |
|
提出日時 | 2022-02-11 21:51:09 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 166 bytes |
コンパイル時間 | 209 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-06-27 18:07:37 |
合計ジャッジ時間 | 4,703 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 1 |
other | RE * 23 |
ソースコード
n=int(input())a=[]b=[]asum=0bsum=0for i in range(n):a.append(3*i)asum+=3*ib.append(3*i+1)bsum+=3*i+1asum[n-1]+=bsum-asumprint(*a)print(*b)