結果
問題 |
No.374 コイン
|
ユーザー |
|
提出日時 | 2022-09-27 18:55:32 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 1,000 ms |
コード長 | 412 bytes |
コンパイル時間 | 1,570 ms |
コンパイル使用メモリ | 164,460 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-22 17:05:16 |
合計ジャッジ時間 | 2,804 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 31 |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; #define all(a) begin(a), end(a) #define sz(x) (int)((x).size()) #ifdef LOCAL #include "debug.hpp" #else #define debug(...) 42 #endif void solve() { uint32_t a, b; cin >> a >> b; cout << (a >= b)["KS"] << '\n'; } int main() { cin.tie(nullptr)->sync_with_stdio(false); int T = 1; // cin >> T; while (T--) solve(); return 0; }