結果
| 問題 |
No.773 コンテスト
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-12-21 00:02:40 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 3 ms / 2,000 ms |
| コード長 | 213 bytes |
| コンパイル時間 | 634 ms |
| コンパイル使用メモリ | 66,480 KB |
| 最終ジャッジ日時 | 2025-01-06 19:45:32 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 21 |
ソースコード
#include <iostream>
int main(){
int ans = 0;
int A, B;std::cin >> A>> B;
for(int i = 23; i <= 25; i++){if(A <= i and i <= B){ans += 0;}else{ans +=1;}}
std::cout << ans << std::endl;
return 0;
}