제출 #1004304

#제출 시각아이디문제언어결과실행 시간메모리
1004304HasanV11010238Horses (IOI15_horses)C++17
0 / 100
21 ms4444 KiB
#include "horses.h" #include <bits/stdc++.h> #define ll long long #define mod 1000000007 using namespace std; vector<int> x, y; int init(int N, int X[], int Y[]) { ll ma = 0; for (int i = 0; i < N - 1; i++){ ma = max(ma, 1ll * X[i] * Y[i]); } return ma % mod; } int updateX(int pos, int val) { return 0; } int updateY(int pos, int val) { return 0; }

컴파일 시 표준 에러 (stderr) 메시지

horses.cpp: In function 'int init(int, int*, int*)':
horses.cpp:12:12: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
   12 |  return ma % mod;
      |            ^
horses.cpp: In function 'int updateX(int, int)':
horses.cpp:15:17: warning: unused parameter 'pos' [-Wunused-parameter]
   15 | int updateX(int pos, int val) {
      |             ~~~~^~~
horses.cpp:15:26: warning: unused parameter 'val' [-Wunused-parameter]
   15 | int updateX(int pos, int val) {
      |                      ~~~~^~~
horses.cpp: In function 'int updateY(int, int)':
horses.cpp:19:17: warning: unused parameter 'pos' [-Wunused-parameter]
   19 | int updateY(int pos, int val) {
      |             ~~~~^~~
horses.cpp:19:26: warning: unused parameter 'val' [-Wunused-parameter]
   19 | int updateY(int pos, int val) {
      |                      ~~~~^~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...