結果

問題 No.784 「,(カンマ)」
ユーザー 大橋宏紀大橋宏紀
提出日時 2022-09-22 10:22:41
言語 PyPy2
(7.3.15)
結果
RE  
実行時間 -
コード長 76 bytes
コンパイル時間 1,674 ms
コンパイル使用メモリ 76,416 KB
実行使用メモリ 75,648 KB
最終ジャッジ日時 2024-12-22 04:44:35
合計ジャッジ時間 2,322 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other RE * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

s=input()
a=s[:-3]
b=s[-3:]
print(s[1:3])

print(a)
print(b)

print(a+","+b)
0