結果
| 問題 |
No.374 コイン
|
| コンテスト | |
| ユーザー |
vjudge1
|
| 提出日時 | 2025-04-20 16:26:32 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 250 bytes |
| コンパイル時間 | 1,543 ms |
| コンパイル使用メモリ | 160,092 KB |
| 実行使用メモリ | 7,848 KB |
| 最終ジャッジ日時 | 2025-04-20 16:26:34 |
| 合計ジャッジ時間 | 2,448 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 31 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:6:16: warning: ignoring return value of ‘FILE* freopen(const char*, const char*, FILE*)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
6 | freopen("coin.in","r",stdin);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~
main.cpp:7:16: warning: ignoring return value of ‘FILE* freopen(const char*, const char*, FILE*)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
7 | freopen("coin.out","w",stdout);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~
main.cpp:8:25: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
8 | ll ra,rb;scanf("%lld%lld",&ra,&rb);
| ~~~~~^~~~~~~~~~~~~~~~~~~~
ソースコード
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
#define int ll
signed main(){
freopen("coin.in","r",stdin);
freopen("coin.out","w",stdout);
ll ra,rb;scanf("%lld%lld",&ra,&rb);
if(ra>=rb)printf("S");
else printf("K");
}
vjudge1