結果

問題 No.1139 Slime Race
ユーザー furafura
提出日時 2020-07-31 21:59:58
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 27 ms / 2,000 ms
コード長 293 bytes
コンパイル時間 1,948 ms
コンパイル使用メモリ 190,632 KB
最終ジャッジ日時 2025-01-12 10:03:43
ジャッジサーバーID
(参考情報)
judge5 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:9:23: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    9 |         int n,d; scanf("%d%d",&n,&d);
      |                  ~~~~~^~~~~~~~~~~~~~
main.cpp:10:23: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   10 |         rep(i,n) scanf("%*d");
      |                  ~~~~~^~~~~~~
main.cpp:14:29: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   14 |                 int v; scanf("%d",&v);
      |                        ~~~~~^~~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i,n) for(int i=0;i<(n);i++)

using namespace std;
using lint=long long;

int main(){
	int n,d; scanf("%d%d",&n,&d);
	rep(i,n) scanf("%*d");

	lint vsum=0;
	rep(i,n){
		int v; scanf("%d",&v);
		vsum+=v;
	}

	printf("%lld\n",(d+vsum-1)/vsum);

	return 0;
}
0