結果
問題 | No.111 あばばばば |
ユーザー | togaerror |
提出日時 | 2015-04-06 01:46:48 |
言語 | Perl (5.38.2) |
結果 |
TLE
|
実行時間 | - |
コード長 | 180 bytes |
コンパイル時間 | 501 ms |
コンパイル使用メモリ | 7,072 KB |
実行使用メモリ | 12,700 KB |
最終ジャッジ日時 | 2024-07-04 03:11:16 |
合計ジャッジ時間 | 6,696 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 7 ms
6,812 KB |
testcase_01 | AC | 7 ms
6,940 KB |
testcase_02 | AC | 11 ms
6,940 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
コンパイルメッセージ
Main.pl syntax OK
ソースコード
#!/usr/bin/perl use strict; use warnings; my $l = <>; $l = int ($l / 2); my $ans = 0; for(my $i = 0; $i < $l; $i++) { $ans += $i; } $ans *= 2; $ans += $l; print "$ans\n"; exit;