結果
問題 |
No.388 階段 (1)
|
ユーザー |
![]() |
提出日時 | 2016-11-19 08:50:00 |
言語 | C90 (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 135 bytes |
コンパイル時間 | 899 ms |
コンパイル使用メモリ | 19,712 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-26 11:03:21 |
合計ジャッジ時間 | 710 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 12 |
コンパイルメッセージ
main.c: In function ‘main’: main.c:6:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 6 | scanf("%d %d", &n, &m); | ^~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> int main(void) { int kaisu=1, n,m; scanf("%d %d", &n, &m); kaisu += n/m; printf("%d", kaisu); return 0; }