結果
問題 | No.687 E869120 and Constructing Array 1 |
ユーザー |
👑 |
提出日時 | 2020-01-08 16:15:47 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 211 bytes |
コンパイル時間 | 558 ms |
コンパイル使用メモリ | 63,232 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-23 02:50:36 |
合計ジャッジ時間 | 2,125 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 |
other | WA * 6 |
ソースコード
#include <iostream>using namespace std;int main(){int a;cin>>a;for(int i = 1; 10 > i; i++){if(a-i <= 10){cout << a << " " << a-i << endl;return 0;}}}