結果
問題 | No.231 めぐるはめぐる (1) |
ユーザー | 👑 CleyL |
提出日時 | 2019-06-21 00:45:47 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 404 bytes |
コンパイル時間 | 402 ms |
コンパイル使用メモリ | 58,456 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-02 08:48:14 |
合計ジャッジ時間 | 1,144 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:20:18: warning: ‘ok’ may be used uninitialized in this function [-Wmaybe-uninitialized] 20 | cout << ok+1 << endl; | ^
ソースコード
#include <iostream> #include <cmath> using namespace std; int main(){ int n;cin>>n; int ok; int okpr = 0; for(int i = 0; n > i; i++){ int g,d; cin >> g >> d; if(okpr < g-(30000*d)){ ok = i; okpr = g-(30000*d); } } if(okpr*6 < 30000*100)cout << "NO" << endl; else{ cout << "YES" << endl; for(int i = 0; 6 > i; i++){ cout << ok+1 << endl; } } }