72 条题解
-
0三次元❤堕天逗比 LV 10 @ 2016-03-23 16:59:56
编译成功
foo.cpp:4:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
main()
^测试数据 #0: Accepted, time = 0 ms, mem = 556 KiB, score = 5
测试数据 #1: Accepted, time = 0 ms, mem = 556 KiB, score = 15
测试数据 #2: Accepted, time = 0 ms, mem = 556 KiB, score = 15
测试数据 #3: Accepted, time = 0 ms, mem = 556 KiB, score = 20
测试数据 #4: Accepted, time = 0 ms, mem = 552 KiB, score = 20
测试数据 #5: Accepted, time = 0 ms, mem = 556 KiB, score = 25
Accepted, time = 0 ms, mem = 556 KiB, score = 100
-
02015-10-09 23:43:03@
include<iostream>
using namespace std;
main()
{
unsigned long long x,y; cin>>x>>y; cout<<x*y+x+y; } -
02015-07-05 17:24:08@
var
x,y,z:int64;
begin
readln(x,y);
z:=x*y+x+y;
writeln(z);
end. -
02014-08-25 16:32:32@
#include<iostream>
using namespace std;
int main()
{
unsigned long long x, y;
cin >> x >> y;
cout << x*y + x + y;
}
#楼下保持队形 -
02014-08-11 17:23:29@
#include<iostream>
using namespace std;
main()
{
unsigned long long x,y;
cin>>x>>y;
cout<<x*y+x+y;
} -
02014-07-31 13:35:06@
AC50道,庆祝=。=
评测状态 Accepted
题目 P1192 星际青蛙(木木版)
递交时间 2014-07-31 13:33:47
代码语言 Pascal
评测机 VijosEx
消耗时间 124 ms
消耗内存 728 KiB
评测时间 2014-07-31 13:33:48
评测结果
编译成功Free Pascal Compiler version 2.6.2 [2013/02/12] for i386
Copyright (c) 1993-2012 by Florian Klaempfl and others
Target OS: Win32 for i386
Compiling foo.pas
Linking foo.exe
6 lines compiled, 0.1 sec , 28224 bytes code, 1628 bytes data
测试数据 #0: Accepted, time = 109 ms, mem = 728 KiB, score = 5
测试数据 #1: Accepted, time = 0 ms, mem = 728 KiB, score = 15
测试数据 #2: Accepted, time = 0 ms, mem = 724 KiB, score = 15
测试数据 #3: Accepted, time = 15 ms, mem = 728 KiB, score = 20
测试数据 #4: Accepted, time = 0 ms, mem = 724 KiB, score = 20
测试数据 #5: Accepted, time = 0 ms, mem = 728 KiB, score = 25
Accepted, time = 124 ms, mem = 728 KiB, score = 100
代码
var
a,b,c:qword;
begin
readln(a,b);
c:=a*b+a+b;
writeln(c);
end.
想BS的继续盖大楼=。= -
02010-07-06 11:04:49@
int64怎么过不去了?只有35分……
谁能告诉我怎么回事? -
02010-03-27 19:07:13@
var
n,m:qword;
begin
readln(n,m);
n:=n*m+m+n;
writeln(n);
end. -
02009-10-28 20:24:50@
白写了 高精加 高精乘 看了题解才知道qword就能过 彻底囧掉。。
这题会了1182那题就同理了
-
02009-10-15 20:03:24@
A+B problem加强版
A*B+A+B problem。。。 -
02009-10-12 21:29:08@
当我想水题时,我被题水了
当我想被题水时,我发现那是水题........... -
02009-10-11 19:06:10@
公式怎么推
-
02009-10-09 16:25:03@
program cly;
var
a,b,c:qword;
begin
readln(a,b);
c:=a*b+a+b;
writeln(c);
end. -
02009-09-27 19:00:19@
为什么题目描述要写得这么夸张= =。
-
02009-08-27 17:43:12@
庆祝199题。。。
要用qword才能过。。。 -
02009-08-15 17:05:09@
编译通过...
├ 测试数据 01:答案正确... 0ms
├ 测试数据 02:答案正确... 0ms
├ 测试数据 03:答案正确... 0ms
├ 测试数据 04:答案正确... 0ms
├ 测试数据 05:答案正确... 0ms
├ 测试数据 06:答案正确... 0ms
---|---|---|---|---|---|---|---|-
Accepted 有效得分:100 有效耗时:0msprogram lx;
var
w :qword;
x,y :qword;
begin
readln(x,y);
w:=x*y+x+y;
writeln(w);
end.现在最后一组改了!天哪!我交了4次!
-
02009-08-11 10:07:03@
原来可以不用高精.......
郁闷....... -
02009-08-02 20:03:50@
Don't you are pig?好像有语法错误,强烈鄙视。
-
02009-07-27 20:57:07@
星际青蛙这系列是拿来刷AC率的吧
-
02009-07-23 14:26:43@
编译通过...
├ 测试数据 01:答案正确... 0ms
├ 测试数据 02:答案正确... 0ms
├ 测试数据 03:答案正确... 0ms
├ 测试数据 04:答案正确... 0ms
├ 测试数据 05:答案正确... 0ms
├ 测试数据 06:答案正确... 0ms
---|---|---|---|---|---|---|---|-
Accepted 有效得分:100 有效耗时:0ms
a*b+a+b
int64
楼下继续BS
吧