結果

問題 No.1796 木上のクーロン
ユーザー Hà Văn Hoàng
提出日時 2023-06-11 00:11:25
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 245 bytes
コンパイル時間 668 ms
コンパイル使用メモリ 59,520 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2025-01-03 03:25:18
合計ジャッジ時間 4,036 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

using namespace std;

int main() {
    int n, m; cin >> n >> m;
    for (int i = 0; i < n; ++i) {
        int a; cin >> a;
		if (a == 0) {
			cout << "CAC";
			return 0;
		}
    }
    
    cout << "LON";
    
    return 0;
}
0