結果

問題 No.2038 Strange Arrange
ユーザー gew1fw
提出日時 2025-06-12 20:49:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 68 bytes
コンパイル時間 421 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 53,884 KB
最終ジャッジ日時 2025-06-12 20:53:28
合計ジャッジ時間 1,747 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 1 WA * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
pattern = '123' * ((n + 2) // 3)
print(pattern[:n])
0