結果
問題 | No.784 「,(カンマ)」 |
ユーザー | michonz4 |
提出日時 | 2019-12-04 15:44:20 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 382 bytes |
コンパイル時間 | 942 ms |
コンパイル使用メモリ | 28,800 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-07 20:01:33 |
合計ジャッジ時間 | 1,501 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
ソースコード
#include <stdio.h> #include <string.h> int main() { char s[16], buf[16]={'\0'}; scanf("%s", s); size_t size = strlen(s)-1; int j=0; for (int i=size; i>=0; i--, j++) { if ((j+1)%4==0 && i!=size) { buf[j++]=','; buf[j]=s[i]; } else { buf[j]=s[i]; } } for (int i=j; i>=0; i--) { printf("%c", buf[i]); } printf("\n"); return 0; }