#include #include #include #include #include #include #include // 内部定数 #define D_CHAR_MAX 10000 // 最大文字数 // 内部変数 static FILE *szpFpI; // 入力 static long long slX, slY, slZ; // X, Y, Z static long long slXCnt, slYCnt; // 個数 static char sc1Out[D_CHAR_MAX + 5]; // 出力内容 // 内部変数 - テスト用 #ifdef D_TEST static int siRes; static FILE *szpFpA; static int siTNo; #endif // 出力 int fOut( char *pcpLine // 1行 ) { char lc1Buf[1024]; #ifdef D_TEST fgets(lc1Buf, sizeof(lc1Buf), szpFpA); if (strcmp(lc1Buf, pcpLine)) { siRes = -1; } #else printf("%s", pcpLine); #endif return 0; } // X, Yの回数 - セット int fSetCnt( ) { int i, j; // 0あり if (slX == 0) { if (slZ == 0) { slXCnt = 1; slYCnt = 0; return 0; } if (slY == 0) { return -1; } if (slZ % slY != 0) { return -1; } slXCnt = 0; slYCnt = slZ / slY; return 0; } else if (slY == 0) { if (slZ == 0) { slXCnt = 0; slYCnt = 1; return 0; } if (slZ % slX != 0) { return -1; } slXCnt = slZ / slX; slYCnt = 0; return 0; } // 0なし for (i = 0; i <= D_CHAR_MAX / 2; i++) { for (j = 0; j < 2; j++) { if (j == 0) { slXCnt = i; } else { slXCnt = -i; } long long llVal = slZ - slX * slXCnt; if (llVal % slY == 0) { slYCnt = llVal / slY; long long llSum = llabs(slXCnt) + llabs(slYCnt); if (0 < llSum && llSum <= D_CHAR_MAX / 2) { return 0; } } } } return -1; } // 出力内容 - セット int fSetOut( int *pipNo // 位置 , char pcChar // セット文字 , int piCnt // 文字数 ) { if (piCnt > 0) { memset(&sc1Out[*pipNo], pcChar, sizeof(char) * piCnt); *pipNo += piCnt; } return 0; } // 実行メイン int fMain( ) { int liRet; char lc1Buf[1024]; // X, Y, Z - 取得 fgets(lc1Buf, sizeof(lc1Buf), szpFpI); sscanf(lc1Buf, "%lld%lld%lld", &slX, &slY, &slZ); // X, Yの回数 - セット liRet = fSetCnt(); if (liRet != 0) { strcpy(sc1Out, "NO\n"); return 0; } // 出力内容 - セット int liNo = 0; if (slXCnt < slYCnt) { fSetOut(&liNo, 'c', (int)llabs(slXCnt)); fSetOut(&liNo, 'w', (int)slYCnt); fSetOut(&liNo, 'C', (int)slYCnt - 1); if (slXCnt > 0) { fSetOut(&liNo, 'C', (int)slXCnt); } else { fSetOut(&liNo, 'W', (int)llabs(slXCnt)); } } else { fSetOut(&liNo, 'w', (int)llabs(slYCnt)); fSetOut(&liNo, 'c', (int)slXCnt); fSetOut(&liNo, 'C', (int)slXCnt - 1); if (slYCnt > 0) { fSetOut(&liNo, 'C', (int)slYCnt); } else { fSetOut(&liNo, 'W', (int)llabs(slYCnt)); } } sc1Out[liNo] = '\n'; sc1Out[liNo + 1] = '\0'; return 0; } // 1回実行 int fOne( ) { int liRet; char lc1Buf[1024]; // 入力 - セット #ifdef D_TEST sprintf(lc1Buf, ".\\Test\\T%d.txt", siTNo); szpFpI = fopen(lc1Buf, "r"); sprintf(lc1Buf, ".\\Test\\A%d.txt", siTNo); szpFpA = fopen(lc1Buf, "r"); siRes = 0; #else szpFpI = stdin; #endif // 実行メイン liRet = fMain(); // 出力 fOut(sc1Out); // 残データ有無 #ifdef D_TEST lc1Buf[0] = '\0'; fgets(lc1Buf, sizeof(lc1Buf), szpFpA); if (strcmp(lc1Buf, "")) { siRes = -1; } #endif // テストファイルクローズ #ifdef D_TEST fclose(szpFpI); fclose(szpFpA); #endif // テスト結果 #ifdef D_TEST if (siRes == 0) { printf("OK %d\n", siTNo); } else { printf("NG %d\n", siTNo); } #endif return 0; } // プログラム開始 int main() { #ifdef D_TEST int i; for (i = D_TEST_SNO; i <= D_TEST_ENO; i++) { siTNo = i; fOne(); } #else fOne(); #endif return 0; }