結果

問題 No.796 well known
ユーザー iNoma87976671
提出日時 2019-03-17 21:19:27
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 157 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,776 KB
最終ジャッジ日時 2024-07-07 19:52:48
合計ジャッジ時間 5,536 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 1 RE * 1
other WA * 14 RE * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
ans = [1]*N
ans[0] = 3
if (N-1) %3 ==0:
    ans[1] = 2
if (N-1) %3 ==2:
    ans[1] = 3
a = ""
for i in ans:
    a += ""+str(ans[i])
print(a)
0