結果

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

ソースコード

diff #

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