結果
問題 | No.773 コンテスト |
ユーザー |
![]() |
提出日時 | 2019-03-30 12:24:40 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 232 bytes |
コンパイル時間 | 598 ms |
コンパイル使用メモリ | 63,488 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-08 18:05:10 |
合計ジャッジ時間 | 1,637 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 |
ソースコード
#include <iostream>int main() {int n = 0;int a, b;std::cin >> a >> b;for (int i = a; i <= b; i++) {if (i==23 || i == 24 || i ==25)n++;}std::cout << 3 - n << std::endl;}