結果
問題 |
No.481 1から10
|
ユーザー |
|
提出日時 | 2017-05-26 21:24:18 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 171 bytes |
コンパイル時間 | 1,162 ms |
コンパイル使用メモリ | 159,284 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-19 20:10:23 |
合計ジャッジ時間 | 1,518 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 2 |
other | AC * 1 WA * 7 |
ソースコード
#include<bits/stdc++.h> using namespace std; int main(){ for(int i = 1; i < 10; i++){ int t; cin >> t; if(t != i) cout << i << endl; return 0; } puts("10"); return 0; }