結果
| 問題 | No.373 かけ算と割った余り |
| コンテスト | |
| ユーザー |
romNinja
|
| 提出日時 | 2016-06-04 22:30:39 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 223 bytes |
| 記録 | |
| コンパイル時間 | 387 ms |
| コンパイル使用メモリ | 84,464 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-04-24 14:42:21 |
| 合計ジャッジ時間 | 8,405 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | WA * 2 OLE * 3 |
ソースコード
#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