結果

問題 No.784 「,(カンマ)」
ユーザー 金
提出日時 2022-11-17 08:48:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 94 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 11,704 KB
実行使用メモリ 9,920 KB
最終ジャッジ日時 2023-10-19 02:21:56
合計ジャッジ時間 1,332 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 30 ms
9,920 KB
testcase_03 AC 30 ms
9,920 KB
testcase_04 AC 30 ms
9,920 KB
testcase_05 AC 31 ms
9,920 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

s=input()
A=s[-3:]
s=s[:-3]
while len(s)>0:
    c=s[-3:]
    s=s[:-3]
    A=c+','+ans
print(A)
0