結果
| 問題 | No.414 衝動 |
| コンテスト | |
| ユーザー |
mban
|
| 提出日時 | 2016-10-12 03:51:55 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 571 bytes |
| 記録 | |
| コンパイル時間 | 1,118 ms |
| コンパイル使用メモリ | 109,624 KB |
| 実行使用メモリ | 27,556 KB |
| 最終ジャッジ日時 | 2024-11-22 02:05:34 |
| 合計ジャッジ時間 | 2,198 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 12 WA * 1 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
class Magatro
{
static void Main()
{
long m = long.Parse(Console.ReadLine());
int rootm;
if (m > 1000000)
{
rootm = 1000000;
}
else
{
rootm = (int)m-1;
}
for(int i = rootm; i >= 1; i--)
{
if (m % i == 0)
{
Console.WriteLine(i + " " + m / i);
return;
}
}
}
}
mban