結果
| 問題 |
No.1453 手助け
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-03-31 20:45:55 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 329 bytes |
| コンパイル時間 | 1,614 ms |
| コンパイル使用メモリ | 166,128 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-12-15 08:06:26 |
| 合計ジャッジ時間 | 2,351 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 21 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
#define int long long
void a(int A){
assert(A>=1);
assert(A<=100);
}
void b(int B,int C){
a(B);
a(C);
assert(C<=B);
}
void c(int D){
assert(D>=1);
assert(D<=1000);
}
signed main(){
int aa,bb,cc,dd,ee;
cin>>aa>>bb>>cc>>dd>>ee;
a(aa);
b(bb,cc);
c(dd);
c(ee);
}