結果
| 問題 | No.3259 C++ → Rust → Python |
| コンテスト | |
| ユーザー |
Andrew8128
|
| 提出日時 | 2025-08-09 13:41:51 |
| 言語 | C++23 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| + 257µs | |
| コード長 | 333 bytes |
| 記録 | |
| コンパイル時間 | 864 ms |
| コンパイル使用メモリ | 145,044 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-13 22:21:52 |
| 合計ジャッジ時間 | 2,162 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 22 |
ソースコード
#include <iostream>
using std::cerr, std::cin, std::cout, std::endl, std::fixed, std::flush;
static_assert(sizeof(long) == 8);
int main()
{
int L, R;
cin >> L >> R;
cout << (L <= 295 && 296 <= R) + (L <= 416 && 417 <= R) << '\n';
return 0;
}
/*
File : ~/kyopro/yukicoder/iwai2/A.cpp
Date : 2025/08/09
Time : 13:39:15
*/
Andrew8128