結果
| 問題 |
No.373 かけ算と割った余り
|
| コンテスト | |
| ユーザー |
romNinja
|
| 提出日時 | 2016-06-04 22:30:39 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 223 bytes |
| コンパイル時間 | 563 ms |
| コンパイル使用メモリ | 70,876 KB |
| 実行使用メモリ | 13,644 KB |
| 最終ジャッジ日時 | 2024-10-08 08:29:25 |
| 合計ジャッジ時間 | 4,648 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | WA * 2 OLE * 1 -- * 2 |
ソースコード
#include<iostream>
#include<string>
#include<vector>
#include<map>
using namespace std;
int n;
int main() {
cin >> n;
cout << "1";
for (int i = 0; i < n - 1; i++) {
cout << "0";
}
cout << "7" << endl;
return 0;
}
romNinja