結果
問題 | No.863 計算量 |
ユーザー | shell_mug |
提出日時 | 2019-08-16 21:39:14 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 1,000 ms |
コード長 | 199 bytes |
コンパイル時間 | 103 ms |
コンパイル使用メモリ | 22,912 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-22 15:20:47 |
合計ジャッジ時間 | 677 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 13 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:5:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 5 | scanf("%d%d", &a, &b); | ~~~~~^~~~~~~~~~~~~~~~
ソースコード
#include <cstdio> int main(void) { int a, b; scanf("%d%d", &a, &b); if(a * 40 <= b && b <= (a + 1) * 40) { printf("1\n"); } else { printf("2\n"); } return 0; }