結果
問題 | No.46 はじめのn歩 |
ユーザー |
![]() |
提出日時 | 2017-02-09 01:13:51 |
言語 | C90 (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 5,000 ms |
コード長 | 338 bytes |
コンパイル時間 | 205 ms |
コンパイル使用メモリ | 20,736 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-25 17:06:59 |
合計ジャッジ時間 | 660 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 10 |
コンパイルメッセージ
main.c: In function ‘main’: main.c:10:3: warning: ignoring return value of ‘fgets’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 10 | fgets(buf,20,stdin); | ^~~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> unsigned long cal(unsigned long a,unsigned long b); int main(){ unsigned long a,b; char buf[20]; fgets(buf,20,stdin); sscanf(buf,"%ld %ld",&a,&b); printf("%ld\n",cal(a,b)); return 0; } unsigned long cal(unsigned long a,unsigned long b){ if(b % a) return b / a + 1; else return b / a; }