結果
| 問題 | No.3678 しゃべりすぎた男 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-09-05 14:45:50 |
| 言語 | C++23 (gcc 15.3.0 + boost 1.92.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 250 bytes |
| 記録 | |
| コンパイル時間 | 2,018 ms |
| コンパイル使用メモリ | 329,160 KB |
| 実行使用メモリ | 6,272 KB |
| 最終ジャッジ日時 | 2026-09-05 14:46:03 |
| 合計ジャッジ時間 | 4,108 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge7_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 33 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main(void){
int sum=0;
for(int i=0;i<7;i++){
int a;
cin>>a;
if(a==-1)sum+=10000;
sum+=a;
cout<<max(6000-sum,-1)<<(i==6?"\n":" ");
}
return 0;
}