結果
| 問題 | No.3259 C++ → Rust → Python |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-09-06 13:04:25 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| + 339µs | |
| コード長 | 389 bytes |
| 記録 | |
| コンパイル時間 | 1,149 ms |
| コンパイル使用メモリ | 211,448 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-14 18:16:28 |
| 合計ジャッジ時間 | 2,580 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 22 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
int main(){
int l,r;
cin >> l >> r;
vector<bool>check (3,false);
for(int i=l;i<r+1;i++){
if(i <= 295)check[0] = true;
else if(i <= 416) check[1] = true;
else check[2] = true;
}
int ans = -1;
for(auto x:check){
if(x) ans++;
}
cout << ans << endl;
}