結果
問題 | No.373 かけ算と割った余り |
ユーザー | romNinja |
提出日時 | 2016-06-04 22:30:39 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 223 bytes |
コンパイル時間 | 563 ms |
コンパイル使用メモリ | 70,876 KB |
実行使用メモリ | 13,644 KB |
最終ジャッジ日時 | 2024-10-08 08:29:25 |
合計ジャッジ時間 | 4,648 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | OLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
ソースコード
#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; }