結果

問題 No.169 何分かかるの!?
ユーザー Maeda
提出日時 2025-03-07 16:33:38
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 506 bytes
コンパイル時間 475 ms
コンパイル使用メモリ 28,032 KB
実行使用メモリ 8,612 KB
最終ジャッジ日時 2025-03-07 16:33:40
合計ジャッジ時間 1,726 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 2
other WA * 22
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:13:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   13 |         scanf("%d\n%d\n",&k,&s);
      |         ^~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
#include <math.h>
#include <stdlib.h>
#include <string.h>
#define MAX_LEN (256)

void uint2str(char str[], size_t len, double num) {
    snprintf(str, len, "%f", num);
}

void main(void){
	int k,s;
	scanf("%d\n%d\n",&k,&s);
	int remaining = 100 - k ;
	double percentTime = s / remaining;
	char numStr[MAX_LEN];
	printf("トータル時間:%f\n",percentTime * 100);
	uint2str(numStr,MAX_LEN,percentTime * 100);
	int i = 0;
	while(numStr[i] != '.'){
		printf("%c",numStr[i]);
		i++;
	}
}
0