結果
問題 |
No.1351 Sum of GCD Equals LCM
|
ユーザー |
|
提出日時 | 2022-01-14 18:56:35 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 90 bytes |
コンパイル時間 | 410 ms |
コンパイル使用メモリ | 82,368 KB |
実行使用メモリ | 54,248 KB |
最終ジャッジ日時 | 2024-11-19 14:09:52 |
合計ジャッジ時間 | 9,911 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 1 |
other | WA * 50 |
ソースコード
N = int(input()) if N & 1: print(2,N,"1 " * (N-2)) else: print(2 * N,"2 " * (N-1))