結果
問題 | No.249 N言っちゃダメゲーム (2) |
ユーザー | カルロス |
提出日時 | 2015-10-02 13:04:20 |
言語 | C90 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 216 bytes |
コンパイル時間 | 311 ms |
コンパイル使用メモリ | 20,736 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-19 19:07:08 |
合計ジャッジ時間 | 1,088 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | WA | - |
コンパイルメッセージ
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, &K); | ^~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> int main(void){ int i, N, K, w = 0; for(i=0;i<1000;i++){ scanf("%d %d", &N, &K); if((N-1)%(K+1)!=0){ w++; } } printf("%d\n", w); return 0; }