結果

問題 No.1017 Reiwa Sequence
ユーザー beet
提出日時 2020-03-30 10:45:39
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 105 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 53,452 KB
最終ジャッジ日時 2024-07-03 00:38:05
合計ジャッジ時間 36,357 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 4
other WA * 50
権限があれば一括ダウンロードができます

ソースコード

diff #

input()
A = map(int, input().split())
print('Yes')
print(' '.join(map(str, [i * 10 ** 100 for i in A])))
0