結果
問題 | No.481 1から10 |
ユーザー |
![]() |
提出日時 | 2022-12-20 20:11:08 |
言語 | C90 (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 183 bytes |
コンパイル時間 | 841 ms |
コンパイル使用メモリ | 19,584 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-18 02:07:14 |
合計ジャッジ時間 | 1,602 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 8 |
コンパイルメッセージ
main.c: In function ‘main’: main.c:7:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 7 | scanf("%d ", &b); | ^~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> int main(void){ int b, ans = 55; while(ans > 10){ scanf("%d ", &b); ans -= b; } printf("%d\n", ans); return 0; }