結果
問題 |
No.784 「,(カンマ)」
|
ユーザー |
|
提出日時 | 2022-09-22 10:35:40 |
言語 | Whitespace (0.4) |
結果 |
RE
|
実行時間 | - |
コード長 | 89 bytes |
コンパイル時間 | 32 ms |
コンパイル使用メモリ | 6,688 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2025-01-01 00:38:13 |
合計ジャッジ時間 | 590 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 3 |
other | RE * 10 |
ソースコード
s = input() ans = "" while len(s) > 3: c = s[-3:] s = s[:-3] ans +=","+c print(s +ans)