結果
| 問題 |
No.3300 Frog Game
|
| コンテスト | |
| ユーザー |
yu23578
|
| 提出日時 | 2025-10-05 16:30:00 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 235 bytes |
| コンパイル時間 | 1,470 ms |
| コンパイル使用メモリ | 193,336 KB |
| 実行使用メモリ | 7,720 KB |
| 最終ジャッジ日時 | 2025-10-05 16:30:17 |
| 合計ジャッジ時間 | 2,570 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 5 WA * 30 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define int long long
int N,A,B;
signed main(){
cin>>N>>A>>B;
int now = (N-1) / (A+B) + 1;
N = (A+B) * now - N;
if(N < B) cout << "ryota" << "\n";
else cout << "sepa" << "\n";
}
yu23578