結果
問題 | No.2945 Namiki Secondary School |
ユーザー | gooooma |
提出日時 | 2025-01-04 09:19:09 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 273 bytes |
コンパイル時間 | 541 ms |
コンパイル使用メモリ | 59,996 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2025-01-04 09:19:11 |
合計ジャッジ時間 | 1,703 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 WA * 1 |
other | AC * 15 WA * 8 |
ソースコード
#include <stdio.h>#include <iostream>using namespace std;int main() {int iYear;cin >> iYear;if (iYear > 2007) {cout << "Namiki Secondary School";}if (iYear > 1983) {cout << "Namiki High School";}if (iYear < 1984) {cout << "None";}return 0;}