結果
問題 | No.51 やる気の問題 |
ユーザー |
|
提出日時 | 2017-05-05 17:59:59 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 3 ms / 5,000 ms |
コード長 | 1,708 bytes |
コンパイル時間 | 419 ms |
コンパイル使用メモリ | 31,488 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-14 08:43:44 |
合計ジャッジ時間 | 1,050 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 20 |
ソースコード
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <math.h> #define READ_BUFSIZE ( 1024 ) #define READ_DELIMITER ( " " ) //標準入力取得(1行) int GetStdin( char* pszStr, int lMaxLen ) { int lLen = 0; memset( pszStr, 0, lMaxLen ); if( fgets( pszStr, lMaxLen, stdin ) ) { lLen = strlen( pszStr ); if( lLen >= 1 ) { if( pszStr[ lLen - 1 ] == 0x0A ) { pszStr[ lLen - 1 ] = 0; lLen--; } } } return( lLen ); } //標準入力を取得 //区切り文字で区切られている文字列を取り出す //取り出した文字列のポインタをポインタ配列にセットする (数値型) int split(char *pszStr, int lStrMax, const char *pszDelim, int *palOutList) { char *pszToken; int count = 0; char *pszNext_token = 0; int lLen = 0; int lNum = 0; memset(pszStr, 0, lStrMax); lLen = GetStdin(pszStr, lStrMax); if (lLen > 0) { pszToken = strtok(pszStr, pszDelim); while (pszToken != NULL) { *palOutList = atoi(pszToken); lNum++; // pszToken = strtok_s(NULL, pszDelim, &pszNext_token); pszToken = strtok(NULL, pszDelim); palOutList++; } } return lNum; } int main(int argc, char *argv[]) { char szRead[READ_BUFSIZE] = ""; int OutList[1] = { 0 }; //char* pOutList[2] = {0}; split( szRead, READ_BUFSIZE, READ_DELIMITER, OutList); int W = OutList[0]; //作業量 split(szRead, READ_BUFSIZE, READ_DELIMITER, OutList); int D = OutList[0]; //残り日数 //やる気 = W / ( D * D) if (D == 1) { printf("%d\n", W); return 0; } int w = W; for (int i = 0; i < ( D-1 ) && w; i++) { w -= ( w / (D - i) / (D - i) ); } printf( "%d\n", w ); return 0; }